Skip to content

Add QA GitHub Actions workflow #3

Add QA GitHub Actions workflow

Add QA GitHub Actions workflow #3

Workflow file for this run

# name: CI
# run-name: "CI (${{ github.event_name == 'pull_request' && format('pr: #{0}', github.event.number) || format('{0}: {1}', startsWith(github.event.ref, 'refs/tags') && 'tag' || 'branch', github.ref_name) }})"
# on: push
# jobs:
# tests:
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: ["macos-latest", "ubuntu-latest", "windows-latest"]
# python-version: ["3.10", "3.11", "3.12"]
# name: Tests - Python ${{ matrix.python-version }} (${{ matrix.os }})
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# with:
# architecture: x64
# python-version: ${{ matrix.python-version }}
# - run: pipx install nox poetry
# - run: pipx inject nox nox-poetry
# - run: pipx inject poetry poetry-plugin-export
# - run: nox -s tests-${{ matrix.python-version }}