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 7c34c7f commit f8af34bCopy full SHA for f8af34b
.github/workflows/ci.yml
@@ -25,11 +25,12 @@ jobs:
25
python-version: "3.8"
26
cache: true
27
- name: Install dependencies
28
- run: pdm sync --dev -G:all
29
- - name: Lint
30
run: |
31
- pdm run ruff format --check
32
- pdm ruff check
+ pdm venv create --with-pip --force $PYTHON
+ pdm sync --dev -G:all
+ - run: |
+ ruff format --check
33
+ ruff check
34
pdm run lint-mypy
35
36
test:
@@ -71,6 +72,7 @@ jobs:
71
72
python-version: ${{ matrix.python-version }}
73
74
75
- - name: Test
76
- run: pdm run test-all
+ run: |
77
78
+ - run: pdm run test-all
0 commit comments