diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index c555474..141c75b 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -62,11 +62,15 @@ jobs: container: ${{ matrix.os-version }} steps: - uses: actions/checkout@v6 - - name: Install dependencies + - name: Install dependencies using apt-get + if: ${{ matrix.os-version == 'debian:bullseye' || matrix.os-version == 'debian:bookworm' }} run: | - (apt-get update && - apt-get install -y openssl perl make gcc libssl-dev sudo curl) || - (yum install --skip-broken -y openssl perl make gcc openssl-devel sudo curl) + apt-get update + apt-get install -y openssl perl make gcc libssl-dev sudo curl + - name: Install dependencies using yum + if: ${{ matrix.os-version == 'almalinux:9' }} + run: | + yum install --skip-broken -y openssl perl make gcc openssl-devel sudo curl - run: openssl version - run: perl -V - name: uses install-with-cpm