Allow ruff to lint for Python syntax errors #521
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
--- | |
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
name: Python ${{ matrix.python-version}} | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Update pip and install dev requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install nox | |
- name: Test | |
run: nox -s tests-${{ matrix.python-version }} | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- uses: actions/upload-artifact@v2 | |
if: success() || failure() | |
with: | |
name: test-results-${{ matrix.python-version }} | |
path: test-results.xml | |
test-typedoc-versions: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12"] | |
typedoc-version: ["0.25"] | |
name: Python ${{ matrix.python-version}} + typedoc ${{ matrix.typedoc-version }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Update pip and install dev requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install nox | |
- name: Test | |
run: nox -s "test_typedoc-${{ matrix.python-version }}(typedoc='${{ matrix.typedoc-version }}')" | |
- uses: actions/upload-artifact@v2 | |
if: success() || failure() | |
with: | |
name: test_typedoc-results-${{ matrix.python-version }}-${{ matrix.typedoc-version }} | |
path: test-results.xml | |
test-sphinx-versions: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12"] | |
sphinx-version: ["6"] | |
name: Test sphinx 6 | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Update pip and install dev requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install nox | |
- name: Test | |
run: nox -s "test_sphinx_6-${{ matrix.python-version }}" | |
- uses: actions/upload-artifact@v2 | |
if: success() || failure() | |
with: | |
name: test_sphinx_6-${{ matrix.python-version }} | |
path: test-results.xml |