Skip to content

[pre-commit.ci] auto fixes from pre-commit.com hooks #336

[pre-commit.ci] auto fixes from pre-commit.com hooks

[pre-commit.ci] auto fixes from pre-commit.com hooks #336

Workflow file for this run

name: local tests
on:
push:
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: actions/cache@v2
with:
key: ${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
path: .venv
- name: Install Poetry
uses: Gr1N/setup-poetry@v7
- name: Install Dependencies
run: poetry install --extras docs -vv
- name: Run Tests
run: make test