Skip to content

Commit

Permalink
Fix python version vs. ubuntu version
Browse files Browse the repository at this point in the history
  • Loading branch information
pawel-kow authored Feb 17, 2024
1 parent 3daafbc commit ca92996
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,24 @@ on:

jobs:
build:

runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
include:
- python-version: 2.7
os: ubuntu-18.04
- python-version: 3.6
os: ubuntu-20.04
- python-version: 3.7
os: ubuntu-22.04
- python-version: 3.8
os: ubuntu-22.04
- python-version: 3.9
os: ubuntu-22.04
- python-version: 3.10
os: ubuntu-22.04
- python-version: 3.11
os: ubuntu-22.04

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

0 comments on commit ca92996

Please sign in to comment.