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 diff --git a/test.sh b/test.sh index 464b34b..4f03cdb 100755 --- a/test.sh +++ b/test.sh @@ -8,7 +8,7 @@ PYTHON=python3 if [[ -f /etc/redhat-release ]]; then . /etc/os-release - if [[ $VERSION_ID == 8 ]] ; then + if [[ $VERSION_ID == 8* ]] ; then REPOS="--enablerepo=powertools" else REPOS=""