Skip to content

Commit

Permalink
older Python versions need an older os image
Browse files Browse the repository at this point in the history
  • Loading branch information
apdavison committed Jan 9, 2024
1 parent 9013c5e commit ca51c7c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,18 @@ on: [push, pull_request]
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
include:
- os: "ubuntu-18.04"
python-version: "3.4"
- os: "ubuntu-18.04"
python-version: "3.5"
- os: "ubuntu-18.04"
python-version: "3.6"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit ca51c7c

Please sign in to comment.