This repository has been archived by the owner on Aug 11, 2024. It is now read-only.
Bump sphinx from 6.1.3 to 7.3.6 in /docs #144
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: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.3.0 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4.5.0 | |
with: | |
python-version: 3.8 | |
- name: Linting | |
run: | | |
pip install pre-commit | |
pre-commit run --all-files | |
tests: | |
needs: linting | |
name: ${{ matrix.os }} / ${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
os: [Ubuntu, MacOS, Windows] | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v3.3.0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4.5.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install system deps | |
shell: bash | |
run: | | |
pip install nox-poetry | |
pip install poetry | |
poetry config virtualenvs.in-project true | |
- name: Run mypy with nox | |
shell: bash | |
run: nox --force-color -s mypy-${{ matrix.python-version }} | |
- name: Run tests with nox | |
shell: bash | |
run: nox --force-color -s tests-${{ matrix.python-version }} | |
- name: Run safety check | |
if: matrix.python-version == '3.11' && matrix.os == 'Ubuntu' | |
shell: bash | |
run: nox --force-color -s safety | |
- name: Upload coverage data | |
uses: actions/upload-artifact@v2.2.4 | |
with: | |
name: coverage-data | |
path: ".coverage.*" | |
coverage: | |
needs: tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.3.0 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4.5.0 | |
with: | |
python-version: 3.8 | |
- name: Install system deps | |
shell: bash | |
run: | | |
pip install nox-poetry | |
pip install poetry | |
poetry config virtualenvs.in-project true | |
- name: Download coverage data | |
uses: actions/download-artifact@v2.0.10 | |
with: | |
name: coverage-data | |
- name: Create coverage report | |
shell: bash | |
run: | | |
nox --force-color --session=coverage -- --fmt xml | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v2.0.2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |