Skip to content

Commit 0ab7f5a

Browse files
authored
Merge pull request #121 from lyrixx/patch-1
Test with PHP 8.1
2 parents 2c280c8 + ef6904e commit 0ab7f5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-20.04
88
strategy:
99
matrix:
10-
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
10+
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v2
@@ -26,13 +26,13 @@ jobs:
2626
make
2727
2828
- name: Test the extension (PHP 7)
29-
if: matrix.php-versions != '8.0'
29+
if: matrix.php-versions != '8.0' and matrix.php-versions == '8.1'
3030
run: |
3131
cd extension/
3232
REPORT_EXIT_STATUS=1 NO_INTERACTION=1 TEST_PHP_EXECUTABLE=$(which php) $(which php) run-tests.php -d extension=$PWD/modules/meminfo.so
3333
3434
- name: Test the extension (PHP 8)
35-
if: matrix.php-versions == '8.0'
35+
if: matrix.php-versions == '8.0' or matrix.php-versions == '8.1'
3636
run: |
3737
cd extension/
3838
REPORT_EXIT_STATUS=1 NO_INTERACTION=1 make test

0 commit comments

Comments
 (0)