fix unit-tests

This commit is contained in:
Matthias Pfefferle 2023-08-09 11:33:42 +02:00
parent f0c0c1bd21
commit 94c22358ab

View file

@ -16,9 +16,14 @@ jobs:
strategy: strategy:
matrix: matrix:
php-versions: ['5.6', '7.0', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] php-versions: ['5.6', '7.0', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
include:
- wp-version: latest
- wp-version: '6.2'
php-versions: '5.6'
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Setup PHP - name: Setup PHP
uses: shivammathur/setup-php@v2 uses: shivammathur/setup-php@v2
with: with:
@ -26,10 +31,14 @@ jobs:
coverage: none coverage: none
tools: composer, phpunit-polyfills tools: composer, phpunit-polyfills
extensions: mysql extensions: mysql
- name: Install Composer dependencies for PHP - name: Install Composer dependencies for PHP
uses: "ramsey/composer-install@v1" uses: "ramsey/composer-install@v1"
- name: Setup Test Environment - name: Setup Test Environment
run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 latest if: ${{ matrix.php-versions > '5.6' }}
run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp-version }}
- name: Unit Testing - name: Unit Testing
run: ./vendor/bin/phpunit run: ./vendor/bin/phpunit
env: env: