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

56 lines
1.5 KiB
YAML
Raw Normal View History

2024-09-20 19:15:55 +02:00
name: Unit Testing
on:
push:
2024-09-20 20:36:39 +02:00
branches:
- main
2024-09-20 19:15:55 +02:00
pull_request:
jobs:
phpunit:
runs-on: ubuntu-latest
services:
mysql:
2024-09-20 22:12:42 +02:00
image: mariadb
2024-09-20 19:15:55 +02:00
env:
MYSQL_ROOT_PASSWORD: root
2024-09-20 20:28:22 +02:00
strategy:
matrix:
2024-09-20 20:35:52 +02:00
php-versions: ['8.1']
2024-09-20 21:03:22 +02:00
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-20 22:25:41 +02:00
# - name: Cache composer dependencies
# id: cache-primes
# uses: actions/cache@v4
# with:
# path: /root/.cache/composer
# key: cache-1
2024-09-20 21:03:22 +02:00
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
2024-09-20 19:15:55 +02:00
2024-09-20 20:35:00 +02:00
- name: Install Composer dependencies for PHP
uses: "ramsey/composer-install@v1"
2024-09-20 19:15:55 +02:00
2024-09-20 20:51:02 +02:00
- name: Install mysqladmin
2024-09-20 21:42:21 +02:00
run: sudo apt update && sudo apt -y upgrade && sudo apt -y install mysql-client
2024-09-20 20:51:02 +02:00
2024-09-21 08:01:13 +02:00
- name: Clone plugin dependencies
run: git clone https://code.event-federation.eu/Event-Federation/wordpress-activitypub.git /tmp/wordpress/wp-content/plugins/activitypub/
2024-09-20 20:35:00 +02:00
- name: Setup Test Environment
2024-09-21 07:48:16 +02:00
run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 latest
2024-09-20 19:15:55 +02:00
2024-09-20 20:35:00 +02:00
- name: Unit Testing
2024-09-21 00:41:02 +02:00
run: phpunit
2024-09-20 20:35:00 +02:00
env:
PHP_VERSION: ${{ matrix.php-versions }}