From 4f453f0af16ce1a90c440e9256d71f2774ff8d68 Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Tue, 5 Nov 2024 09:43:36 +0200 Subject: [PATCH] github: Make explicit debian version too This uses ubuntu though, because they seem to work. --- .github/workflows/static.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index daa60a8..8f21c4e 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -11,8 +11,18 @@ jobs: build_ubuntu: strategy: matrix: - os: [ubuntu-24.04, ubuntu-22.04, ubuntu-20.04] - runs-on: ${{ matrix.os }} + include: + - os: ubuntu-24.04 + image: ubuntu-24.04 + - os: ubuntu-22.04 + image: ubuntu-22.04 + - os: ubuntu-20.04 + image: ubuntu-20.04 + - os: debian-11 + image: ubuntu-20.04 + - os: debian-12 + image: ubuntu-22.04 + runs-on: ${{ matrix.image }} steps: - name: Checkout imaptest uses: actions/checkout@v4