Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
cedb997707 | |||
11f14b0601 | |||
ca8395b04d |
1 changed files with 11 additions and 1 deletions
|
@ -5,6 +5,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
- improve_tests
|
||||
- ci_badge
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
|
@ -92,4 +93,13 @@ jobs:
|
|||
- name: Run Integration tests for Events Manager
|
||||
run: cd /workspace/Event-Federation/wordpress-activitypub-event-bridge/ && ./vendor/bin/phpunit --filter=events_manager
|
||||
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
|
Loading…
Reference in a new issue