From 48b30318d157a152e8d2db7108dff5eb8ba3226f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 19 Oct 2024 12:14:56 +0200 Subject: [PATCH] Switch to Ubuntu 24.04 and update Python versions in CI --- .github/workflows/ci.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26271ea..7c7ad8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -52,6 +53,8 @@ jobs: strategy: matrix: + os: + - ubuntu-24.04 builder: - docker - podman @@ -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: