Skip to content

Commit

Permalink
ci: add python 3.12 checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Danyal-Faheem authored and Faraz32123 committed Mar 19, 2024
1 parent ae9f84e commit 665bc18
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@ on:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools
- name: Install dependencies
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- [Feature] Add Python 3.12 CI checks (by @Danyal-Faheem)

0 comments on commit 665bc18

Please sign in to comment.