Skip to content

Commit

Permalink
build: add python 3.12 checks alongside 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
DawoudSheraz committed Feb 23, 2024
1 parent 13c420c commit 791b2ed
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: requirements/dev.txt
- name: Upgrade pip
Expand Down

0 comments on commit 791b2ed

Please sign in to comment.