Skip to content

Commit

Permalink
Add python3.12 to test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamStrickland committed Sep 14, 2024
1 parent f155cdc commit d416156
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.11"
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python3.12 -m venv .venv
source .venv/bin/activate
python3.12 -m pip install --upgrade pip
pip install pytest
- name: Test with pytest
run: |
python3.11 -m pytest
python3.12 -m pytest

0 comments on commit d416156

Please sign in to comment.