Skip to content

fix: github action test run #11

fix: github action test run

fix: github action test run #11

Workflow file for this run

---
name: build
"on": push
jobs:
build:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: checkout
run: git fetch --prune --unshallow
- name: install environment
run: pip install tox
- name: run tests
run: tox -e py