From 65dce6337dee8682a75f0cf7755dbea8bcf63a72 Mon Sep 17 00:00:00 2001 From: "Eric D. Helms" Date: Tue, 27 Aug 2024 15:18:58 -0400 Subject: [PATCH] Use almalinux 8 for EL8 testing --- .github/workflows/main.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 49ac7f5..6cd2c5a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,7 +39,6 @@ jobs: fail-fast: false matrix: centos: - - stream8 - stream9 container: image: quay.io/centos/centos:${{ matrix.centos }} @@ -47,3 +46,17 @@ jobs: - uses: actions/checkout@v2 - name: Run tests run: ./test.sh + + almalinux: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + almalinux: + - 8 + container: + image: almalinux:${{ matrix.almalinux }} + steps: + - uses: actions/checkout@v2 + - name: Run tests + run: ./test.sh