Skip to content

Commit

Permalink
Add QA GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jmfontaine committed Apr 6, 2024
1 parent bcb33af commit 8f60c38
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: QA
on: push
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["macos-latest", "ubuntu-latest", "windows-latest"]
python-version: ["3.10", "3.11", "3.12"]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
architecture: x64
python-version: ${{ matrix.python-version }}
- run: pipx install nox poetry
- run: pipx inject nox nox-poetry
- run: pipx inject poetry poetry-plugin-export
- run: nox -s tests-${{ matrix.python-version }}

0 comments on commit 8f60c38

Please sign in to comment.