Compare commits

...

3 commits

Author SHA1 Message Date
cedb997707 test
Some checks failed
PHPUnit / PHPUnit – PHP 8.1 (push) Failing after 1m1s
PHPUnit / PHPUnit – PHP 8.2 (push) Failing after 1m10s
PHPUnit / PHPUnit – PHP 8.3 (push) Failing after 1m3s
2024-10-03 15:48:09 +02:00
11f14b0601 test
Some checks failed
PHPUnit / PHPUnit – PHP 8.1 (push) Failing after 1m1s
PHPUnit / PHPUnit – PHP 8.2 (push) Failing after 1m5s
PHPUnit / PHPUnit – PHP 8.3 (push) Failing after 1m1s
2024-10-03 15:43:44 +02:00
ca8395b04d test
Some checks failed
PHPUnit / PHPUnit – PHP 8.1 (push) Failing after 1m16s
PHPUnit / PHPUnit – PHP 8.2 (push) Failing after 1m6s
PHPUnit / PHPUnit – PHP 8.3 (push) Has been cancelled
2024-10-03 15:40:25 +02:00

View file

@ -5,6 +5,7 @@ on:
branches: branches:
- main - main
- improve_tests - improve_tests
- ci_badge
pull_request: pull_request:
env: env:
@ -92,4 +93,13 @@ jobs:
- name: Run Integration tests for Events Manager - name: Run Integration tests for Events Manager
run: cd /workspace/Event-Federation/wordpress-activitypub-event-bridge/ && ./vendor/bin/phpunit --filter=events_manager run: cd /workspace/Event-Federation/wordpress-activitypub-event-bridge/ && ./vendor/bin/phpunit --filter=events_manager
env: env:
PHP_VERSION: ${{ matrix.php-version }} PHP_VERSION: ${{ matrix.php-version }}
- name: Save WordPress version and plugin versions to file
run: curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && chmod +x wp-cli.phar && mv wp-cli.phar /usr/local/bin/wp && wp core version --allow-root > wordpress_versions.txt && wp plugin list --allow-root --format=json >> wordpress_versions.txt
- name: Upload WordPress and Plugin Versions
uses: https://code.forgejo.org/actions/upload-artifact@v3
with:
name: versions
path: wordpress_versions.txt