Ensure support for Python 3.12, 3.8, and 3.7 #4
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: Run tests | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- ".github/workflows/test.yml" | |
- "**.py" | |
pull_request: | |
branches: | |
- master | |
paths: | |
- ".github/workflows/test.yml" | |
- "**.py" | |
env: | |
FORCE_COLOR: '1' | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
python: | |
- "3.12" | |
- "3.11" | |
- "3.10" | |
- "3.9" | |
- "3.8" | |
- "3.7" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Setup Graphviz | |
uses: ts-graphviz/setup-graphviz@v1 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Run all tests | |
run: | | |
poetry env use ${{ matrix.python }} | |
poetry install | |
poetry env info | |
poetry run python -m unittest -v tests/*.py |