-
-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
176 additions
and
177 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/.gitattributes export-ignore | ||
/.github export-ignore |
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,125 @@ | ||
name: Timber starter theme tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- ready_for_review | ||
|
||
# Cancel previous workflow run groups that have not completed. | ||
concurrency: | ||
# Group workflow runs by workflow name, along with the head branch ref of the pull request | ||
# or otherwise the branch or tag ref. | ||
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
phpunit: | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
mysql: | ||
image: mariadb:latest | ||
env: | ||
MYSQL_USER: root | ||
MYSQL_ALLOW_EMPTY_PASSWORD: true | ||
MYSQL_ROOT_PASSWORD: '' | ||
MYSQL_DATABASE: wordpress_test | ||
ports: | ||
- 3306 | ||
options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
|
||
continue-on-error: ${{ matrix.experimental }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ['7.4', '8.0', '8.1'] | ||
wp: ['latest'] | ||
multisite: ['0', '1'] | ||
dependency-version: ['highest', 'lowest'] | ||
webp: [false] | ||
coverage: [false] | ||
extensions: ['gd'] | ||
experimental: [false] | ||
include: | ||
# WP Trunk | ||
- php: '7.4' | ||
wp: 'trunk' | ||
dependency-version: 'highest' | ||
multisite: '0' | ||
experimental: true | ||
# PHP 8.0 | ||
- php: '8.0' | ||
wp: 'latest' | ||
dependency-version: 'prefer-stable' | ||
multisite: '0' | ||
experimental: false | ||
# PHP 8.1 | ||
- php: '8.1' | ||
wp: 'latest' | ||
dependency-version: 'prefer-stable' | ||
multisite: '0' | ||
experimental: false | ||
# PHP 8.1 / experimental | ||
- php: '8.1' | ||
wp: 'trunk' | ||
dependency-version: 'highest' | ||
multisite: '0' | ||
experimental: true | ||
# PHP 8.2 / experimental | ||
- php: '8.2' | ||
wp: 'trunk' | ||
dependency-version: 'highest' | ||
multisite: '0' | ||
experimental: true | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
coverage: ${{ matrix.coverage && 'pcov' || 'none' }} | ||
tools: composer:v2 | ||
extensions: curl, date, dom, iconv, json, libxml, mysql, ${{ matrix.extensions }} | ||
ini-values: pcov.directory=src | ||
|
||
- name: Shutdown default MySQL service | ||
run: sudo service mysql stop | ||
|
||
- name: Verify MariaDB connection | ||
run: | | ||
while ! mysqladmin ping -h"127.0.0.1" -P"${{ job.services.mysql.ports[3306] }}" --silent; do | ||
sleep 1 | ||
done | ||
- name: Setup problem matchers for PHP | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
|
||
- name: Setup problem matchers for PHPUnit | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | ||
|
||
- uses: ramsey/composer-install@v2 | ||
with: | ||
dependency-versions: ${{ matrix.dependency-version }} | ||
|
||
- name: Install tests | ||
run: bash bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1:${{ job.services.mysql.ports['3306'] }} ${{ matrix.wp }} true | ||
|
||
# - name: Setup PCOV | ||
# if: ${{ matrix.coverage == true }} | ||
# run: | | ||
# composer require --dev --ignore-platform-reqs pcov/clobber | ||
# vendor/bin/pcov clobber | ||
|
||
- name: Run tests | ||
if: ${{ !matrix.webp }} | ||
run: composer run test:no-cov | ||
env: | ||
WP_MULTISITE: ${{ matrix.multisite }} |
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
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
Oops, something went wrong.