Skip to content

Commit

Permalink
Add CI job for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jbirddog committed Jan 10, 2024
1 parent 6d6de04 commit d14ad02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Unit Tests in Python 3.8, 3.9, 3.10, 3.11
name: Unit Tests in Python 3.8, 3.9, 3.10, 3.11, 3.12

on: [push]

Expand All @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand All @@ -19,14 +19,14 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff pytest
pip install ruff
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# - name: Lint with ruff
# run: |
# stop the build if there are Python syntax errors or undefined names
# ruff --format=github --select=E9,F63,F7,F82 --target-version=py37 .
# default set of ruff rules with GitHub Annotations
# ruff --format=github --target-version=py37 .
- name: Test with pytest
- name: Run tests
run: |
python -m unittest discover -v -s ./tests/SpiffWorkflow/ -p *Test.py

0 comments on commit d14ad02

Please sign in to comment.