Skip to content

Commit

Permalink
Test different Python versions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thxo committed Dec 22, 2023
1 parent 17cb12a commit 713715f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}
- name: Install pip and dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 713715f

Please sign in to comment.