Skip to content

Fix documented invocation #58

Fix documented invocation

Fix documented invocation #58

Workflow file for this run

name: "CI"
on: ["pull_request"]
jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: ["ubuntu", "macos", "windows"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pipx run nox -s test-${{ matrix.python-version }}
# Set up as a separate job for a very small amount of parallelism and to
# avoid running multiple times under each OS like we do for testing.
lint:
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: ["ubuntu", "windows"] # Due to having different APIs.
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- run: pipx run nox -s lint