Fix typing of ea867373aa07d6ce75368651d4d33e82aed8ddff #33
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
tox: | |
name: ${{ matrix.name }} | |
runs-on: ubuntu-latest | |
container: python:${{ matrix.python }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- {name: '3.13', python: '3.13', tox: py313} | |
- {name: '3.12', python: '3.12', tox: py312} | |
- {name: '3.11', python: '3.11', tox: py311} | |
- {name: '3.10', python: '3.10', tox: py310} | |
- {name: '3.9', python: '3.9', tox: py39} | |
- {name: 'format', python: '3.13', tox: format} | |
- {name: 'mypy', python: '3.13', tox: mypy} | |
- {name: 'pep8', python: '3.13', tox: pep8} | |
- {name: 'package', python: '3.13', tox: package} | |
steps: | |
- uses: pgjones/actions/tox@v1 | |
with: | |
environment: ${{ matrix.tox }} | |
zizmor: | |
name: Zizmor | |
runs-on: ubuntu-latest | |
steps: | |
- uses: pgjones/actions/zizmor@v1 |