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

Support Python 3.11 #60

Merged
merged 11 commits into from
Nov 28, 2022
10 changes: 8 additions & 2 deletions .github/workflows/code-quality-checks.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
name: Code Quality Checks
on: [pull_request, push]
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
steps:
#----------------------------------------------
# check-out repo and set-up python
Expand Down
Loading