Skip to content

Commit

Permalink
Merge pull request #24 from 10up/fix/14
Browse files Browse the repository at this point in the history
Add workflow to run PHPUnit tests
  • Loading branch information
dkotter authored Oct 18, 2023
2 parents eed703e + c5a4e97 commit 929f626
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: PHPUnit

on:
push:
branches:
- develop
- trunk
paths:
- '**.php'
pull_request:
branches:
- develop
paths:
- '**.php'

jobs:
phpunit:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- uses: getong/mariadb-action@v1.1

- name: Setup proper PHP version
uses: shivammathur/setup-php@v2
with:
php-version: 7.4

- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install dependencies
run: composer install

- name: Setup WP Tests
run: bash bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1

- name: PHPUnit
run: './vendor/bin/phpunit'
6 changes: 6 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,10 @@
<directory suffix=".php">./includes</directory>
</whitelist>
</filter>
<php>
<const name="WP_TESTS_MULTISITE" value="1" />
<ini name="error_reporting" value="32767" />
<ini name="display_errors" value="1" />
<ini name="display_startup_errors" value="1" />
</php>
</phpunit>

0 comments on commit 929f626

Please sign in to comment.