mirror of
https://gh.wpcy.net/https://github.com/wp-cli/scaffold-command.git
synced 2026-04-26 00:01:28 +08:00
38 lines
810 B
Text
38 lines
810 B
Text
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
|