Skip to content

Commit 54d844e

Browse files
committed
EL-9 default PHP 8.0 is not a module
1 parent 5735e67 commit 54d844e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,19 @@ jobs:
1111
matrix:
1212
distro: ['rockylinux']
1313
el: [9]
14-
php: ['8.0', '8.1', '8.2', 'remi-8.0', 'remi-8.1', 'remi-8.2', 'remi-8.3']
14+
php: [0, '8.1', '8.2', 'remi-8.0', 'remi-8.1', 'remi-8.2', 'remi-8.3']
1515
container:
1616
image: ${{ matrix.distro }}:${{ matrix.el }}
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4
20-
- name: Install PHP
20+
- name: Setup PHP module
21+
if: ${{ matrix.php }}
2122
run: |
2223
dnf install -y "https://rpms.remirepo.net/enterprise/remi-release-${{ matrix.el }}.rpm"
2324
dnf module enable -y "php:${{ matrix.php }}"
25+
- name: Install PHP
26+
run: |
2427
dnf install -y "php" "php-devel" "libxcrypt-devel"
2528
- name: Show PHP version
2629
run: php -v

0 commit comments

Comments
 (0)