Skip to content

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

[pre-commit.ci] pre-commit autoupdate

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

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false # Don't cancel all jobs if one fails
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -r requirements.txt
python -m pip install -r dev-requirements.txt
- name: Run tests
run: |
python -m coverage run -m pytest -vvv --color=yes
- name: Print coverage report
run: |
coverage report