test: set up python version matrix

This commit is contained in:
Misty De Méo 2025-02-26 11:58:30 -08:00
parent 42210907f5
commit 9509762635

View File

@ -14,12 +14,15 @@ jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: ${{ matrix.version }}
- uses: ./.github/workflows/setup