Skip to content

Support typedoc 0.25 #137

Support typedoc 0.25

Support typedoc 0.25 #137

Workflow file for this run

---
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v3
with:
python-version: 3.11.1
- uses: pre-commit/[email protected]
test:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11']
experimental: [false]
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 }}
- 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.10', '3.11']
typedoc-version: ['0.20', '0.21', '0.22', '0.23', '0.24', '0.25']
experimental: [false]
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