use stable #195
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
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
env: | |
TRAVIS_BUILD_DIR: ${{ github.workspace }} | |
strategy: | |
matrix: | |
php_version: [7.4] | |
wp_version: [latest] | |
wp_multisite: [0] | |
include: | |
- php_version: 7.4 | |
wp_multisite: 1 | |
services: | |
mysql: | |
image: mysql:5.7 | |
env: | |
MYSQL_ROOT_PASSWORD: 'root' | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_version }} | |
extensions: mysqli | |
coverage: xdebug | |
tools: phpunit-polyfills | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ matrix.php_version }}-${{ hashFiles('**/composer.json') }} | |
restore-keys: | | |
${{ runner.os }}-php-${{ matrix.php_version }}- | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: Setup WP | |
run: script/setup | |
env: | |
WP_VERSION: ${{ matrix.wp_version }} | |
WP_MULTISITE: ${{ matrix.wp_multisite }} | |
- name: PHPUnit | |
run: script/cibuild-phpunit | |
env: | |
WP_MULTISITE: ${{ matrix.wp_multisite }} | |
- name: Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage.xml | |
directory: ${{ github.workspace }} | |
verbose: true | |
flags: php-${{ matrix.php_version }}, wp-${{ matrix.wp_version }}, multisite-${{ matrix.wp_multisite }} | |
phpcs: | |
runs-on: ubuntu-latest | |
env: | |
TRAVIS_BUILD_DIR: ${{ github.workspace }} | |
strategy: | |
matrix: | |
php_version: [7.4] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_version }} | |
extensions: mysqli | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ matrix.php_version }}-${{ hashFiles('**/composer.json') }} | |
restore-keys: | | |
${{ runner.os }}-php-${{ matrix.php_version }}- | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: phpcs | |
run: script/cibuild-phpcs |