This commit is contained in:
parent
81f74fdafb
commit
d4f8e1386d
3 changed files with 41 additions and 9 deletions
|
@ -1,6 +0,0 @@
|
||||||
on: [push]
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- run: echo All Good
|
|
40
.forgejo/workflows/phpcs.yml
Executable file
40
.forgejo/workflows/phpcs.yml
Executable file
|
@ -0,0 +1,40 @@
|
||||||
|
name: Unit Testing
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
phpunit:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
services:
|
||||||
|
mysql:
|
||||||
|
image: mariadb
|
||||||
|
env:
|
||||||
|
MYSQL_ROOT_PASSWORD: root
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
php-versions: ['8.1']
|
||||||
|
name: Run phpunit tests
|
||||||
|
env:
|
||||||
|
extensions: mysql
|
||||||
|
key: cache-v1
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup PHP
|
||||||
|
uses: https://github.com/shivammathur/setup-php@v2
|
||||||
|
with:
|
||||||
|
php-version: ${{ matrix.php-versions }}
|
||||||
|
coverage: none
|
||||||
|
tools: composer, cs2pr
|
||||||
|
env:
|
||||||
|
runner: self-hosted
|
||||||
|
|
||||||
|
- name: Install Composer dependencies for PHP
|
||||||
|
uses: ramsey/composer-install@v3
|
||||||
|
|
||||||
|
- name: Detect coding standard violations
|
||||||
|
run: phpcs
|
|
@ -38,7 +38,7 @@ jobs:
|
||||||
runner: self-hosted
|
runner: self-hosted
|
||||||
|
|
||||||
- name: Install Composer dependencies for PHP
|
- name: Install Composer dependencies for PHP
|
||||||
uses: "ramsey/composer-install@v1"
|
uses: ramsey/composer-install@v3
|
||||||
|
|
||||||
- name: Install mysqladmin
|
- name: Install mysqladmin
|
||||||
run: sudo apt update && sudo apt -y upgrade && sudo apt -y install mysql-client
|
run: sudo apt update && sudo apt -y upgrade && sudo apt -y install mysql-client
|
||||||
|
@ -46,8 +46,6 @@ jobs:
|
||||||
- name: Setup Test Environment
|
- name: Setup Test Environment
|
||||||
run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 6.6
|
run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 6.6
|
||||||
|
|
||||||
- run: ls -l $WP_CORE_DIR && ls -l $WP_CORE_DIR/wp-includes && ls -l $WP_CORE_DIR/wp-includes/PHPMailer/
|
|
||||||
|
|
||||||
- name: Unit Testing
|
- name: Unit Testing
|
||||||
run: cd /workspace/Event-Federation/wordpress-activitypub-event-extensions/ && phpunit
|
run: cd /workspace/Event-Federation/wordpress-activitypub-event-extensions/ && phpunit
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in a new issue