TST: add CPython 3.13 to regular test matrix #504
Workflow file for this run
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Test | |
on: | |
push: | |
branches: | |
- master | |
tags: v* | |
pull_request: | |
schedule: | |
# run this on first day of the month at 3 am UTC | |
- cron: 0 3 1 * * | |
workflow_dispatch: | |
jobs: | |
build: | |
name: ${{ matrix.os }}, Python ${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
python-version: | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
- '3.13' | |
test-args: [--with 'viscm>=0.10'] | |
include: | |
- os: ubuntu-20.04 | |
python-version: '3.10' | |
install-args: --resolution=lowest-direct | |
fail-fast: false | |
concurrency: | |
group: ${{ github.ref }}-${{ matrix.os }}-${{ matrix.python-version }}-build | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v2 | |
with: | |
enable-cache: true | |
- name: Build | |
run: | | |
uv venv --python ${{ matrix.python-version }} | |
uv pip install -e . ${{ matrix.install-args }} | |
- run: uv pip list | |
- name: Test package | |
shell: bash # for windows-compat | |
run: | | |
uv run --with-requirements=requirements/dev.txt ${{ matrix.test-args }} \ | |
pytest --color=yes --mpl \ | |
--cov --cov-config=pyproject.toml --cov-report=term-missing | |
- name: Upload coverage | |
shell: bash # for windows-compat | |
run: | | |
curl -s https://codecov.io/bash | bash | |
type-check: | |
name: type check w/ Python ${{ matrix.python-version }} | |
strategy: | |
matrix: | |
python-version: | |
- '3.10' | |
- '3.13' | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.ref }}-${{ matrix.python-version }}-typecheck | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v2 | |
with: | |
enable-cache: true | |
- name: Run mypy | |
run: | | |
uvx --python ${{ matrix.python-version }} \ | |
--with-requirements=requirements/typecheck.txt --with . \ | |
mypy cmasher | |
docs: | |
name: Build docs | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.ref }}-docs | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v2 | |
with: | |
enable-cache: true | |
- name: Build | |
run: | | |
uvx --python 3.12 --with-requirements=requirements/docs.txt --from sphinx \ | |
sphinx-build -M html docs/source site -W | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: site | |
path: site | |
check-manifest: | |
name: Check MANIFEST.in | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.ref }}-check_manifest | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v2 | |
with: | |
enable-cache: true | |
- run: uvx check-manifest | |
build-artifacts: | |
name: Build artifacts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v2 | |
with: | |
enable-cache: true | |
- run: uv build | |
- run: uvx twine check dist/* | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
publish: | |
name: Publish to PyPI | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
needs: | |
- build | |
- type-check | |
- docs | |
- check-manifest | |
- build-artifacts | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/CMasher | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- name: Publish package distributions to PyPI | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
uses: pypa/gh-action-pypi-publish@release/v1 |