Skip to content

Merge pull request #145 from Preocts/pre-commit-ci-update-config #396

Merge pull request #145 from Preocts/pre-commit-ci-update-config

Merge pull request #145 from Preocts/pre-commit-ci-update-config #396

Workflow file for this run

name: "python tests and coverage"
# Uses:
# https://github.com/actions/setup-python
# https://github.com/actions/checkout
# https://github.com/actions/download-artifact
# https://github.com/actions/upload-artifact
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.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- name: "Repo checkout"
uses: "actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9"
- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1"
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@0b7f8abb1508181956e8e162db84b466c27e18ce"
with:
name: "coverage-artifact"
path: ".coverage.*"
retention-days: 1
coverage-compile:
name: "coverage compile"
needs: "run-tests-and-coverage"
runs-on: "ubuntu-latest"
steps:
- name: "Repo checkout"
uses: "actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9"
- name: "Set up Python"
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1"
with:
python-version: "3.10"
- name: "Install nox"
run: |
python -m pip install --upgrade pip nox
- name: "Download coverage artifacts"
uses: "actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a"
with:
name: coverage-artifact
- 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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9"
- name: "Set up Python"
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1"
with:
python-version: "3.10"
- name: "Install nox"
run: |
python -m pip install --upgrade pip nox
- name: "Enforce strict type annotations with mypy"
run: |
nox --session mypy_check
ci-success:
name: "CI steps all completed successfully"
needs: ["coverage-compile", "mypy-check"]
runs-on: "ubuntu-latest"
steps:
- name: "Success"
run: |
echo "If you are seeing this, the CI run was successful."