Skip to content

v6.0.0

v6.0.0 #16

Workflow file for this run

---
name: build
on: push
jobs:
tox:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
tox:
- py310
- pre-commit
- mypy
- docs
# TODO: benchmark blocked on https://github.com/actions/toolkit/issues/399
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install tox
- run: tox -e ${{ matrix.tox }}