Skip to content

End of year clean up #466

End of year clean up

End of year clean up #466

Workflow file for this run

name: "python tests and coverage"
# Uses:
# https://github.com/actions/setup-python : 0b93645e9fea7318ecaed2b359559ac225c90a2b
# https://github.com/actions/checkout : 11bd71901bbe5b1630ceea73d27597364c9af683
# https://github.com/actions/download-artifact : fa0a91b85d4f404e444e00e005971372dc801d16
# https://github.com/actions/upload-artifact : 6f51ac03b9356f520e9adb1b1b7802705f340c2b
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
jobs:
run-tests-and-coverage:
name: "Run nox for tests and coverage"
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os:
- "macos-latest"
- "windows-latest"
- "ubuntu-latest"
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- name: "Repo checkout"
uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683"
- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b"
with:
python-version: "${{ matrix.python-version }}"
allow-prereleases: true
- name: "Install nox"
run: |
python -m pip install --upgrade pip nox
- name: "Run tests and coverage via nox"
run: |
nox --session tests_with_coverage-${{ matrix.python-version }}
- name: "Save coverage artifact"
uses: "actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b"
with:
name: "coverage-artifact-${{ matrix.os}}-${{ matrix.python-version}}"
path: ".coverage.*"
retention-days: 1
include-hidden-files: true
coverage-compile:
name: "coverage compile"
needs: "run-tests-and-coverage"
runs-on: "ubuntu-latest"
steps:
- name: "Repo checkout"
uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683"
- name: "Set up Python"
uses: "actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b"
with:
python-version: "3.12"
- name: "Install nox"
run: |
python -m pip install --upgrade pip nox
- name: "Download coverage artifacts"
uses: "actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16"
with:
pattern: "coverage-artifact-*"
merge-multiple: true
- name: "Compile coverage data, print report"
run: |
nox --session coverage_combine_and_report
export TOTAL=$(python -c "import json;print(json.load(open('coverage.json'))['totals']['percent_covered_display'])")
echo "TOTAL=$TOTAL" >> $GITHUB_ENV
echo "### Total coverage: ${TOTAL}%" >> $GITHUB_STEP_SUMMARY
mypy-check:
name: "mypy strict enforcement"
runs-on: "ubuntu-latest"
steps:
- name: "Repo checkout"
uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683"
- name: "Set up Python"
uses: "actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b"
with:
python-version: "3.12"
- name: "Install nox"
run: |
python -m pip install --upgrade pip nox
- name: "Enforce strict type annotations with mypy"
run: |
nox --session mypy_check