Skip to content

Commit e40d837

Browse files
committed
change github action
1 parent 0912443 commit e40d837

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818

19-
- name: Install poetry
20-
run: pip install poetry
19+
- name: Install pdm
20+
run: pipx install pdm
2121

2222
- name: Set up cache
2323
uses: actions/cache@v4.0.2
@@ -26,10 +26,10 @@ jobs:
2626
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
2727
- name: Install dependencies
2828
run: |
29-
poetry install
29+
pdm install
3030
3131
- name: Run test and code styles
3232
run: |
33-
make formatting
34-
make test
35-
make cleanup
33+
pdm test
34+
pdm cleanup
35+

0 commit comments

Comments
 (0)