-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub as valid CI for plugin and theme scaffold (#331)
* Add support for GitHub as CI in plugin scaffold * Create multilevel folders
- Loading branch information
1 parent
36ba2e6
commit e27f110
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Testing | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- master | ||
|
||
jobs: | ||
phpunit: | ||
name: Run tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
php-version: ['8.2', '8.0', '7.4'] | ||
services: | ||
database: | ||
image: mysql:latest | ||
env: | ||
MYSQL_DATABASE: wordpress_tests | ||
MYSQL_ROOT_PASSWORD: root | ||
ports: | ||
- 3306:3306 | ||
steps: | ||
- name: Check out source code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
tools: phpunit-polyfills:1.1 | ||
|
||
- name: Setup tests | ||
run: bash bin/install-wp-tests.sh wordpress_tests root root 127.0.0.1 latest true | ||
|
||
- name: Run tests | ||
run: phpunit |