Skip to content

Commit

Permalink
Update testing.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
bimac committed Jun 30, 2024
1 parent 84927ad commit d06590e
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
os: [ubuntu-latest, macOS-latest, windows-latest]
on: workflow_dispatch

steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
os: [ubuntu-latest, macOS-latest, windows-latest]

- name: Install dependencies
run: |
pdm sync -d
- name: Run Tests
run: |
pdm run -v pytest tests
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
- name: Run Tests
run: |
pdm run -v pytest tests

0 comments on commit d06590e

Please sign in to comment.