Skip to content

Commit 26b9484

Browse files
author
Jesse
authored
Support Python 3.11 (#60)
Signed-off-by: Jesse Whitehouse <[email protected]>
1 parent 7b994d2 commit 26b9484

File tree

3 files changed

+197
-178
lines changed

3 files changed

+197
-178
lines changed

.github/workflows/code-quality-checks.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
name: Code Quality Checks
2-
on: [pull_request, push]
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
branches:
8+
- main
39
jobs:
410
run-unit-tests:
511
runs-on: ubuntu-latest
612
strategy:
713
matrix:
8-
python-version: [3.7, 3.8, 3.9, "3.10"]
14+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
915
steps:
1016
#----------------------------------------------
1117
# check-out repo and set-up python

0 commit comments

Comments
 (0)