Skip to content

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

[pre-commit.ci] pre-commit autoupdate

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

Workflow file for this run

name: CI
on:
push:
branches: "*"
pull_request:
branches: main
jobs:
test:
name: ${{ matrix.python-version }}-build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- uses: actions/cache@v3.0.7
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/dev-requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- run: |
python -m pip install -r dev-requirements.txt
python -m pip install --no-deps -e .
python -m pip list
- name: Running Tests
run: |
python -m pytest --junitxml=test-reports/junit.xml --cov=./ --verbose
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.1
with:
file: test-reports/junit.xml