Skip to content

[pre-commit.ci] pre-commit autoupdate #157

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #157

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
runs-on: ${{ matrix.os }}
name: test-py${{ matrix.python-version }}-${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- run: pip install nox
- uses: abatilo/[email protected]
with:
poetry-version: 1.1.13
- uses: actions/cache@v3
with:
path: .nox
key: ${{ matrix.os }}-${{ matrix.python-version }}-nox-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ matrix.os }}-${{ matrix.python-version }}-nox-
- name: Run tests
run: nox -s tests --python ${{ matrix.python-version }} --reuse-existing-virtualenvs
- uses: codecov/codecov-action@v2
with:
name: test-py${{ matrix.python-version }}-${{ matrix.os }}
lint:
strategy:
matrix:
check: [ "types", "formatting" ]
runs-on: ubuntu-latest
name: Lint
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: 3.7
architecture: x64
- run: pip install nox
- uses: abatilo/[email protected]
with:
poetry-version: 1.1.13
- uses: actions/cache@v3
with:
path: .nox
key: ${{ runner.os }}-${{ runner.python-version }}-nox-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-${{ runner.python-version }}-nox-
- run: nox -s ${{ matrix.check }} --reuse-existing-virtualenvs