Skip to content

Commit

Permalink
PRE-2117: add php 8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ilajili committed Dec 29, 2023
1 parent 6f879a5 commit d8e1fdb
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/payplug-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.3', '7.4', '8.0','8.1']
phpunit-versions:
- '8.5.15'
- '9.0'

php-versions: ['7.3', '7.4', '8.0']
phpunit-versions: ['8.5.15']
include:
- php-versions: '5.6'
phpunit-versions: '5.7.27'
- php-versions: '7.0'
phpunit-versions: '6.5.14'
- php-versions: '8.1'
phpunit-versions: '9.5.10'


name: Php Version ${{matrix.php-versions }} / php Unit ${{ matrix.phpunit-versions }}
Expand All @@ -42,6 +41,9 @@ jobs:
- name: php version
run: php -v

- name: Install Composer dependencies
run: composer install

- name: Run test suite
run: phpunit --bootstrap tests/config.php tests --configuration tests/phpunit.xml

Expand Down

0 comments on commit d8e1fdb

Please sign in to comment.