Skip to content

Commit

Permalink
Update the test workflow.
Browse files Browse the repository at this point in the history
1.  Use Ubuntu 22.04.
2.  Remove Python 2.7 and 3.6 (they are no longer supported)
3.  Add Python 3.11.

Signed-off-by: Chris Lalancette <[email protected]>
  • Loading branch information
clalancette committed Sep 19, 2023
1 parent 3758e46 commit 6d2d3cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ on:
jobs:
unit_tests:
name: Unit Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
lfs: 'true'

Expand Down

0 comments on commit 6d2d3cc

Please sign in to comment.