Skip to content

Commit

Permalink
Merge pull request #498 from MLB-LED-Scoreboard/python3.11-ci
Browse files Browse the repository at this point in the history
Run tests against Python 3.11 in CI
  • Loading branch information
ty-porter authored Aug 17, 2023
2 parents 1b99d52 + 3210669 commit 13e33db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_unittest_on_pr_open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
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:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -25,4 +25,4 @@ jobs:
pip install -r ./requirements.txt
- name: Test with unittest
run: |
python -m unittest discover -s ./tests -p 'test_*.py'
python -m unittest discover -s ./tests -p 'test_*.py'

0 comments on commit 13e33db

Please sign in to comment.