Skip to content

Commit

Permalink
Create pdm.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
singularitti authored Dec 26, 2023
1 parent 5547548 commit 8b08f36
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pdm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
pdm sync -d -G testing
- name: Run Tests
run: |
pdm run -v pytest tests

0 comments on commit 8b08f36

Please sign in to comment.