diff options
| -rw-r--r-- | .github/workflows/test.yml | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8d90f73..f1648eb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,14 @@ jobs: with: python-version: "3.9" - - run: | - pwd - cd tests - python3 -m test-api.py
\ No newline at end of file + - name: set up pdm + run: pip install pdm + + - name: install test deps + run: | + pdm install -dG test + + - name: test api + run: | + cd test + python -m test-api.py
\ No newline at end of file |
