It's nongpl, not nogpl #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 }} |