Skip to content

Commit

Permalink
Fix github build versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sombrafam committed May 5, 2024
1 parent 0e971cb commit cd7b42b
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,21 @@ on:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.8', '3.9', '3.10', '3.11']
os : [ubuntu-20.04, ubuntu-22.04]
exclude:
- os: ubuntu-20.04
python-version: '3.10'
- os: ubuntu-20.04
python-version: '3.11'
- os: ubuntu-22.04
python-version: '3.8'
- os: ubuntu-22.04
python-version: '3.9'

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit cd7b42b

Please sign in to comment.