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 0912443 commit e40d837Copy full SHA for e40d837
.github/workflows/build.yml
@@ -16,8 +16,8 @@ jobs:
16
with:
17
python-version: ${{ matrix.python-version }}
18
19
- - name: Install poetry
20
- run: pip install poetry
+ - name: Install pdm
+ run: pipx install pdm
21
22
- name: Set up cache
23
uses: actions/cache@v4.0.2
@@ -26,10 +26,10 @@ jobs:
26
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
27
- name: Install dependencies
28
run: |
29
- poetry install
+ pdm install
30
31
- name: Run test and code styles
32
33
- make formatting
34
- make test
35
- make cleanup
+ pdm test
+ pdm cleanup
+
0 commit comments