Generate github test matrix from tox #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies | |
run: poetry install --no-interaction --all-extras | |
- name: run pre-commit | |
run: poetry run pre-commit run --all-files --show-diff-on-failure | |
packaging: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies | |
run: poetry install --no-interaction --all-extras | |
- name: build package | |
run: poetry build | |
# use https://github.com/medmunds/tox-gh-matrix to export tox envlist to GH actions | |
get-tox-envlist: | |
runs-on: ubuntu-latest | |
outputs: | |
envlist: ${{ steps.generate-envlist.outputs.envlist }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies | |
run: poetry install --no-interaction --all-extras | |
- id: generate-envlist | |
run: poetry run tox --gh-matrix | |
unit-tests: | |
needs: get-tox-envlist | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
tox: ${{ fromJSON(needs.get-tox-envlist.outputs.envlist) }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
id: setup-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.tox.python.spec }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install dependencies | |
run: poetry install --no-interaction --all-extras | |
- name: run python tests | |
run: poetry run tox -e ${{ matrix.tox.name }} | |
- name: run python test report | |
run: poetry run tox -e report |