From 0f2625e02fc35c54ebca2ed5825926cc8d5fb46a Mon Sep 17 00:00:00 2001 From: Gustav Behm Date: Wed, 15 Nov 2023 08:45:45 +0100 Subject: [PATCH] Try a matrix --- .github/workflows/tests.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index f528858..f74c370 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -6,7 +6,12 @@ on: jobs: build: - runs-on: ubuntu-latest + strategy: + matrix: + image: [ "ubuntu:latest", "ubuntu:22.04", "archlinux:latest" ] + + container: + image: ${{ matrix.image }} steps: - name: Check out repository code uses: actions/checkout@v4