Skip to content

Merge pull request #30 from borntyping/feature/2023 #34

Merge pull request #30 from borntyping/feature/2023

Merge pull request #30 from borntyping/feature/2023 #34

Workflow file for this run

name: Test
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '${{ matrix.python-version }}'
- run: python -m pip install pytest black .
- run: pytest
- run: black --check .