Skip to content

Bump to v0.3.1

Bump to v0.3.1 #94

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main # Also trigger on pull requests to main branch
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- uses: Gr1N/setup-poetry@v8
- uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: make install
- name: Run tests
run: make doctest && make test