wordpress-activitypub/.github/workflows/phpunit.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2022-01-27 11:39:57 +01:00
name: Unit Testing
2022-11-15 20:53:27 +01:00
on:
2023-01-23 19:41:30 +01:00
push:
pull_request:
2022-01-27 11:39:57 +01:00
jobs:
2022-03-16 18:49:45 +01:00
phpunit:
2022-01-27 11:39:57 +01:00
runs-on: ubuntu-latest
services:
mysql:
image: mariadb:10.4
env:
MYSQL_ROOT_PASSWORD: root
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10
strategy:
matrix:
php-versions: ['5.6', '7.0', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
2023-08-09 11:33:42 +02:00
include:
- wp-version: latest
- wp-version: '6.2'
php-versions: '5.6'
2022-01-27 11:39:57 +01:00
steps:
- name: Checkout
uses: actions/checkout@v2
2023-08-09 11:33:42 +02:00
2022-01-27 11:39:57 +01:00
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
2022-11-15 20:53:27 +01:00
tools: composer, phpunit-polyfills
2022-01-27 11:39:57 +01:00
extensions: mysql
2023-08-09 11:33:42 +02:00
2022-01-27 11:39:57 +01:00
- name: Install Composer dependencies for PHP
uses: "ramsey/composer-install@v1"
2023-08-09 11:33:42 +02:00
2022-01-27 11:39:57 +01:00
- name: Setup Test Environment
2023-08-09 11:33:42 +02:00
run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp-version }}
2022-01-27 11:39:57 +01:00
- name: Unit Testing
run: ./vendor/bin/phpunit
env:
PHP_VERSION: ${{ matrix.php-versions }}