Skip to content

refactor: stop overiding type of existing class members #61

refactor: stop overiding type of existing class members

refactor: stop overiding type of existing class members #61

Workflow file for this run

name: Unit tests
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: pre-commit/[email protected]
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install .[test,dev]
- name: Check static typing
run: mypy sphinxcontrib
- name: test with pytest
run: pytest --color=yes --cov --cov-report=xml tests
- name: coverage
run: coverage xml
- name: codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true