Skip to content

build(deps): bump all docs-building packages #488

build(deps): bump all docs-building packages

build(deps): bump all docs-building packages #488

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: '${{ matrix.python-version }}'
- name: "Install package and python dependencies"
run: |
pip install .[dev]
- name: "Test"
run: |
pytest --cov
- uses: codecov/codecov-action@v3