Skip to content

Merge pull request #269 from 10up/dependabot/npm_and_yarn/npm_and_yar… #586

Merge pull request #269 from 10up/dependabot/npm_and_yarn/npm_and_yar…

Merge pull request #269 from 10up/dependabot/npm_and_yarn/npm_and_yar… #586

Workflow file for this run

name: PHPUnit
on:
push:
branches:
- develop
- trunk
pull_request:
branches:
- develop
jobs:
phpunit:
name: ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '7.4', '8.0' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set PHP version
uses: shivammathur/setup-php@2.17.0
with:
php-version: ${{ matrix.php }}
coverage: none
tools: phpunit-polyfills
- name: Update dependencies
run: composer update -W
- name: PHPUnit Test
run: ./vendor/bin/phpunit
- name: PHPUnit Network Test
run: ./vendor/bin/phpunit -c tests/phpunit/multisite/multisite.xml