Skip to content

Commit

Permalink
Add a few more versions of python, and test how this looks if it brea…
Browse files Browse the repository at this point in the history
…ks on one particular version only?
  • Loading branch information
Isaak-Malers committed Feb 22, 2024
1 parent 3eb8962 commit 07ba115
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/automated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11'] # Add newer versions as needed
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- name: Checkout code
Expand Down
9 changes: 9 additions & 0 deletions test/test_canary.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import sys


class TestCanary:

def test_python_version(self):
version = sys.version
if sys.version.startswith("3.8"):
assert True is False

0 comments on commit 07ba115

Please sign in to comment.