Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add python 3.13 tests, fixes:#518 #519

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add python 3.13 tests, fixes:#518
Change-Id: I9f46b79ad9a111cf47eb25fbab3553a4f2db005d
MarkDaoust committed Aug 22, 2024
commit 2976471b0aa850dc7eec7a72dc3153d5e7dabe68
13 changes: 13 additions & 0 deletions .github/workflows/test_pr.yaml
Original file line number Diff line number Diff line change
@@ -15,6 +15,19 @@ on:
workflow_dispatch:

jobs:
test3_13:
name: Test Py3.13
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Run tests
run: |
python --version
pip install .[dev]
python -m unittest
test3_12:
name: Test Py3.12
runs-on: ubuntu-latest