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 6871d38
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: QA
on: push
jobs:
tests:
runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.10", "3.11", "3.12"]
# name: Python ${{ matrix.python-version }}
name: Python 3.10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
architecture: x64
- run: pipx install nox poetry
- run: pipx inject nox nox-poetry
- run: pipx inject poetry poetry-plugin-export
- run: nox -s tests

# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# architecture: x64
# - run: pip install nox
# - run: pip install poetry
# - run: nox -s tests

0 comments on commit 6871d38

Please sign in to comment.