wordpress-activitypub-event.../.forgejo/workflows/phpunit.yml

42 lines
1 KiB
YAML
Raw Normal View History

2024-09-20 19:15:55 +02:00
name: Unit Testing
on:
push:
pull_request:
jobs:
phpunit:
runs-on: ubuntu-latest
services:
mysql:
2024-09-20 20:20:06 +02:00
image: 'mariadb:10.7'
2024-09-20 19:15:55 +02:00
env:
MYSQL_ROOT_PASSWORD: root
ports:
- 3306:3306
2024-09-20 20:28:22 +02:00
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3']
include:
- wp-version: latest
2024-09-20 19:15:55 +02:00
steps:
- name: Checkout
uses: https://code.forgejo.org/actions/checkout@v4
2024-09-20 20:29:31 +02:00
- name: Setup PHP
uses: https://github.com/shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
tools: composer, phpunit-polyfills
extensions: mysql
2024-09-20 19:15:55 +02:00
# - name: Install Composer dependencies for PHP
# uses: "ramsey/composer-install@v1"
# - name: Setup Test Environment
# run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp-version }}
# - name: Unit Testing
# run: ./vendor/bin/phpunit
# env:
# PHP_VERSION: ${{ matrix.php-versions }}