Skip to content

Commit

Permalink
Switch to Ubuntu 24.04 and update Python versions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
flashcode committed Oct 19, 2024
1 parent a333788 commit 48b3031
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ jobs:

strategy:
matrix:
os:
- ubuntu-24.04
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

name: Python ${{ matrix.python-version }}
runs-on: ubuntu-20.04
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

steps:

Expand Down Expand Up @@ -52,6 +53,8 @@ jobs:

strategy:
matrix:
os:
- ubuntu-24.04
builder:
- docker
- podman
Expand All @@ -61,8 +64,8 @@ jobs:
- alpine
- alpine-slim

name: ${{ matrix.builder }} build ${{ matrix.image }}
runs-on: ubuntu-20.04
name: ${{ matrix.builder }} build ${{ matrix.image }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

steps:

Expand Down

0 comments on commit 48b3031

Please sign in to comment.