Skip to content

Commit

Permalink
ci: pair python version with the right OS version
Browse files Browse the repository at this point in the history
Python3.5 is not in the ubuntu-latest
  • Loading branch information
kpetremann committed Jul 10, 2023
1 parent 896702c commit 075cb33
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@ name: CI
on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
checks:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-20.04]
python-version: [3.5, 3.9]
exclude:
- os: ubuntu-latest
python-version: 3.5
- os: ubuntu-20.04
python-version: 3.9

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

0 comments on commit 075cb33

Please sign in to comment.