Skip to content

Bump version

Bump version #21

Workflow file for this run

name: "Code Checks"
on:
- push
- pull_request
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python:
- "3.10"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install -e '.[test]'
- name: Static analysis
run: mypy ./src
- name: Run tests
run: python -m unittest