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 d14ca0d commit 4ce9104Copy full SHA for 4ce9104
.github/workflows/python-app.yml
@@ -20,7 +20,7 @@ permissions:
20
pull-requests: write
21
22
jobs:
23
- Pytest:
+ Test:
24
runs-on: ubuntu-latest
25
steps:
26
- uses: actions/checkout@v4
@@ -54,7 +54,7 @@ jobs:
54
coverageFile: coverage.xml
55
token: ${{ secrets.GITHUB_TOKEN }}
56
57
- Flake8:
+ Lint:
58
59
60
@@ -71,11 +71,11 @@ jobs:
71
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
72
- run: poetry --version
73
- run: poetry install
74
- - name: Lint with flake8
+ - name: Lint with ruff
75
run: |
76
- poetry run flake8
+ poetry run ruff check
77
78
- Mypy:
+ Type-check:
79
80
81
0 commit comments