Skip to content

Add Sphinx configuration path to .readthedocs.yml #62

Add Sphinx configuration path to .readthedocs.yml

Add Sphinx configuration path to .readthedocs.yml #62

Workflow file for this run

# vim: set ft=yaml ts=2 sw=2 expandtab:
name: Test Suite
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linux-build-and-test:
name: "Linux"
uses: pronovic/gha-shared-workflows/.github/workflows/poetry-build-and-test.yml@v8
secrets: inherit
with:
matrix-os-version: "[ 'ubuntu-latest' ]"
matrix-python-version: "[ '3.11', '3.12', '3.13' ]" # run Linux tests on all supported Python versions
persist-python-version: "3.11" # persist artifacts for the oldest supported Python version
macos-build-and-test:
name: "MacOS"
uses: pronovic/gha-shared-workflows/.github/workflows/poetry-build-and-test.yml@v8
secrets: inherit
with:
matrix-os-version: "[ 'macos-latest' ]"
matrix-python-version: "[ '3.13' ]" # only run MacOS tests on latest Python
release:
name: "Release"
if: github.ref_type == 'tag'
uses: pronovic/gha-shared-workflows/.github/workflows/poetry-release.yml@v8
needs: [ linux-build-and-test, macos-build-and-test ]
secrets: inherit
with:
publish-pypi: false