2024-09-20 19:15:55 +02:00
|
|
|
name: Unit Testing
|
|
|
|
on:
|
|
|
|
push:
|
2024-09-21 11:00:33 +02:00
|
|
|
branches:
|
|
|
|
- main
|
2024-09-20 19:15:55 +02:00
|
|
|
pull_request:
|
2024-09-21 11:00:33 +02:00
|
|
|
|
|
|
|
env:
|
|
|
|
WP_TESTS_DIR: /workspace/wordpress-test-lib
|
|
|
|
WP_CORE_DIR: /workspace/wordpress
|
|
|
|
|
2024-09-20 19:15:55 +02:00
|
|
|
jobs:
|
|
|
|
phpunit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
|
|
mysql:
|
2024-09-21 11:00:33 +02:00
|
|
|
image: mariadb
|
2024-09-20 19:15:55 +02:00
|
|
|
env:
|
|
|
|
MYSQL_ROOT_PASSWORD: root
|
2024-09-21 11:00:33 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
php-versions: ['8.1']
|
|
|
|
name: Run phpunit tests
|
|
|
|
env:
|
|
|
|
extensions: mysql
|
|
|
|
key: cache-v1
|
2024-09-20 19:15:55 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: https://code.forgejo.org/actions/checkout@v4
|
|
|
|
|
2024-09-21 12:03:56 +02:00
|
|
|
- name: Cache WordPress Setup
|
|
|
|
id: cache-wordpress
|
2024-09-21 12:13:22 +02:00
|
|
|
uses: https://code.forgejo.org/actions/cache@v4
|
2024-09-21 12:03:56 +02:00
|
|
|
with:
|
|
|
|
path: |
|
2024-09-21 12:38:14 +02:00
|
|
|
${{ env.WP_CORE_DIR }}
|
|
|
|
${{ env.WP_TESTS_DIR }}
|
2024-09-21 12:30:23 +02:00
|
|
|
key: cache-wordpress-1
|
2024-09-21 12:03:56 +02:00
|
|
|
|
2024-09-21 12:45:07 +02:00
|
|
|
- name: Cache Composer
|
2024-09-21 13:26:24 +02:00
|
|
|
id: cache-composer-phpunit
|
2024-09-21 12:45:07 +02:00
|
|
|
uses: https://code.forgejo.org/actions/cache@v4
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
./vendor/
|
2024-09-21 13:26:24 +02:00
|
|
|
key: cache-composer-phpunit-1
|
2024-09-21 12:45:07 +02:00
|
|
|
|
2024-09-21 11:00:33 +02:00
|
|
|
- name: Setup PHP
|
|
|
|
uses: https://github.com/shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
|
|
|
coverage: none
|
2024-09-21 12:41:36 +02:00
|
|
|
tools: composer
|
2024-09-21 11:00:33 +02:00
|
|
|
env:
|
|
|
|
runner: self-hosted
|
2024-09-20 19:15:55 +02:00
|
|
|
|
2024-09-21 13:26:24 +02:00
|
|
|
- name: Install PHP Unit
|
|
|
|
if: steps.cache-composer-phpunit.outputs.cache-hit != 'true'
|
|
|
|
# Polyfills requires all needed packages including phpunit itself.
|
2024-09-21 13:30:10 +02:00
|
|
|
run: composer install yoast/phpunit-polyfills:"^3.0"
|
2024-09-20 19:15:55 +02:00
|
|
|
|
2024-09-21 13:15:52 +02:00
|
|
|
- name: Install and cache mysqladmin needed to initialize the test database
|
2024-09-21 13:13:50 +02:00
|
|
|
uses: https://github.com/awalsh128/cache-apt-pkgs-action@latest
|
2024-09-21 13:00:08 +02:00
|
|
|
with:
|
|
|
|
packages: mysql-client
|
|
|
|
version: 1.0
|
|
|
|
|
2024-09-21 11:00:33 +02:00
|
|
|
- name: Setup Test Environment
|
2024-09-21 12:10:31 +02:00
|
|
|
if: steps.cache-wordpress.outputs.cache-hit != 'true'
|
2024-09-21 13:15:52 +02:00
|
|
|
run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 6.6 false false false false
|
2024-09-21 11:00:33 +02:00
|
|
|
|
2024-09-21 13:15:52 +02:00
|
|
|
- name: Initialize WordPress test database
|
2024-09-21 13:11:43 +02:00
|
|
|
if: steps.cache-wordpress.outputs.cache-hit != 'false'
|
|
|
|
run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 6.6 false true true true
|
|
|
|
|
2024-09-21 11:00:33 +02:00
|
|
|
- name: Unit Testing
|
2024-09-21 12:47:15 +02:00
|
|
|
run: cd /workspace/Event-Federation/wordpress-activitypub-event-extensions/ && ./vendor/bin/phpunit
|
2024-09-21 11:00:33 +02:00
|
|
|
env:
|
|
|
|
PHP_VERSION: ${{ matrix.php-versions }}
|