Skip to content

Commit

Permalink
ENH: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineTheb committed Mar 22, 2024
1 parent e59a45f commit 2241c9a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10']

steps:
Expand All @@ -38,4 +39,5 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pip install --user pytest
pytest

0 comments on commit 2241c9a

Please sign in to comment.