Skip to content

Commit 2819cc9

Browse files
committed
app action
1 parent 050177f commit 2819cc9

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed
Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1-
name: Lint
1+
name: Python application
22

3-
on: [push, pull_request]
3+
on: [push]
44

55
jobs:
6-
lint:
6+
build:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
1010
- name: Set up Python
1111
uses: actions/setup-python@v2
1212
with:
13-
python-version: '3.x'
13+
python-version: '3.12'
1414
- name: Install dependencies
1515
run: |
16-
pip install ruff
17-
- name: Run ruff
16+
pip install uv
17+
uv sync
18+
- name: Run linters
1819
run: |
1920
ruff check .
21+
22+

0 commit comments

Comments
 (0)