Skip to content

Commit f8af34b

Browse files
committed
fix CI
Signed-off-by: Lance Drane <dranelt@ornl.gov>
1 parent 7c34c7f commit f8af34b

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,12 @@ jobs:
2525
python-version: "3.8"
2626
cache: true
2727
- name: Install dependencies
28-
run: pdm sync --dev -G:all
29-
- name: Lint
3028
run: |
31-
pdm run ruff format --check
32-
pdm ruff check
29+
pdm venv create --with-pip --force $PYTHON
30+
pdm sync --dev -G:all
31+
- run: |
32+
ruff format --check
33+
ruff check
3334
pdm run lint-mypy
3435
3536
test:
@@ -71,6 +72,7 @@ jobs:
7172
python-version: ${{ matrix.python-version }}
7273
cache: true
7374
- name: Install dependencies
74-
run: pdm sync --dev -G:all
75-
- name: Test
76-
run: pdm run test-all
75+
run: |
76+
pdm venv create --with-pip --force $PYTHON
77+
pdm sync --dev -G:all
78+
- run: pdm run test-all

0 commit comments

Comments
 (0)