Skip to content

Commit ca1c710

Browse files
committed
Upgrade pipelines to PDM
1 parent ea24708 commit ca1c710

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/sub_testing.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
python-version: "3.12"
1818
- name: Install requirements
19-
run: pdm lock && pdm sync -d -G testing
19+
run: pdm update && pdm sync -d -G testing
2020
- name: Run code analysis (package)
2121
run: pdm run -v mypy ./exegol/ --ignore-missing-imports --check-untyped-defs --pretty # TODO add --disallow-untyped-defs
2222
- name: Run code analysis (source)
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
python-version: "3.12"
4444
- name: Install requirements
45-
run: pdm lock && pdm sync -d -G testing
45+
run: pdm update && pdm sync -d -G testing
4646
- name: Check python compatibility for ${{ matrix.os }}/${{ matrix.version }}
4747
run: pdm run -v mypy ./exegol.py --ignore-missing-imports --check-untyped-defs --python-version ${{ matrix.version }} --platform ${{ matrix.os }}
4848

@@ -63,7 +63,7 @@ jobs:
6363
# python-version: ${{ matrix.python-version }}
6464
#
6565
# - name: Install dependencies
66-
# run: pdm lock && pdm sync -d -G testing
66+
# run: pdm update && pdm sync -d -G testing
6767
# - name: Run Tests
6868
# run: pdm run -v pytest tests
6969

0 commit comments

Comments
 (0)