Skip to content

Commit

Permalink
Run on ubuntu-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
imjoehaines committed Aug 10, 2023
1 parent 13c9f97 commit 95603e0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,18 @@ on: [ push, pull_request ]

jobs:
test:
# TODO: a GH action update broke the 'ubuntu-latest' image
# when it's fixed, we should switch back
runs-on: ubuntu-20.04
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: ['ubuntu-latest']
include:
- python-version: '3.5'
os: 'ubuntu-20.04'
- python-version: '3.6'
os: 'ubuntu-20.04'

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 95603e0

Please sign in to comment.