Skip to content

Commit

Permalink
Merge pull request #121 from lyrixx/patch-1
Browse files Browse the repository at this point in the history
Test with PHP 8.1
  • Loading branch information
BitOne authored Mar 25, 2022
2 parents 2c280c8 + ef6904e commit 0ab7f5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0']
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -26,13 +26,13 @@ jobs:
make
- name: Test the extension (PHP 7)
if: matrix.php-versions != '8.0'
if: matrix.php-versions != '8.0' and matrix.php-versions == '8.1'
run: |
cd extension/
REPORT_EXIT_STATUS=1 NO_INTERACTION=1 TEST_PHP_EXECUTABLE=$(which php) $(which php) run-tests.php -d extension=$PWD/modules/meminfo.so
- name: Test the extension (PHP 8)
if: matrix.php-versions == '8.0'
if: matrix.php-versions == '8.0' or matrix.php-versions == '8.1'
run: |
cd extension/
REPORT_EXIT_STATUS=1 NO_INTERACTION=1 make test
Expand Down

0 comments on commit 0ab7f5a

Please sign in to comment.