Skip to content

update

update #70

Workflow file for this run

name: Tests
on:
push:
# Sequence of patterns matched against refs/heads
branches:
- main
jobs:
tests:
name: ${{ matrix.python-version }}
runs-on: ubuntu-20.04
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: runtests
run: make test