Add initial release version for Read the Docs build (#8) #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- 'v*' | |
tags: | |
- 'v*' | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
# Github Actions supports ubuntu, windows, and macos virtual environments: | |
# https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners | |
ci_tests: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.allow_failure }} | |
strategy: | |
matrix: | |
include: | |
- name: Code style checks | |
os: ubuntu-latest | |
python: 3.x | |
toxenv: codestyle | |
allow_failure: false | |
- name: PEP 517 | |
os: ubuntu-latest | |
python: 3.x | |
toxenv: pep517 | |
allow_failure: false | |
- name: Security audit | |
os: ubuntu-latest | |
python: 3.x | |
toxenv: securityaudit | |
allow_failure: false | |
- name: macOS - Python 3.10 | |
os: macos-latest | |
python: '3.10' | |
toxenv: py310-test | |
allow_failure: false | |
- name: Windows - Python 3.11 | |
os: windows-latest | |
python: 3.11 | |
toxenv: py311-test | |
allow_failure: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Set up python ${{ matrix.python }} on ${{ matrix.os }} | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install base dependencies | |
run: python -m pip install --upgrade pip tox | |
- name: Test/run with tox | |
run: tox -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }} | |