We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 050177f commit 2819cc9Copy full SHA for 2819cc9
.github/workflows/lint.yaml renamed to .github/workflows/python-app.yaml
@@ -1,19 +1,22 @@
1
-name: Lint
+name: Python application
2
3
-on: [push, pull_request]
+on: [push]
4
5
jobs:
6
- lint:
+ build:
7
runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v2
10
- name: Set up Python
11
uses: actions/setup-python@v2
12
with:
13
- python-version: '3.x'
+ python-version: '3.12'
14
- name: Install dependencies
15
run: |
16
- pip install ruff
17
- - name: Run ruff
+ pip install uv
+ uv sync
18
+ - name: Run linters
19
20
ruff check .
21
+
22
0 commit comments