Skip to content

Include Nox code quality check PR workflow #2

Include Nox code quality check PR workflow

Include Nox code quality check PR workflow #2

Workflow file for this run

name: PR quality (nox)
on:
pull_request:
branches: [ "main" ]
jobs:
nox:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
python-version: "3.11"
- os: ubuntu-latest
python-version: "3.12"
- os: ubuntu-latest
python-version: "3.13"
- os: windows-latest
python-version: "3.13"
- os: macos-latest
python-version: "3.13"
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install nox
run: python -m pip install --upgrade pip nox
- name: Run Nox static checks
run: python -m nox -t static_check