chore: Update project metadata to reflect minimum Python version 3.8 … #2
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, pull_request] | |
jobs: | |
build-n-publish: | |
name: Run tests - Python ${{ matrix.python }} | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python: ['3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5.1.0 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Run tests | |
run: | | |
pip3 install tox flake8 | |
make deps | |
make all |