Skip to content

Add capability check for AJAX migration function #698

Add capability check for AJAX migration function

Add capability check for AJAX migration function #698

Workflow file for this run

name: PHPUnit
on:
push:
branches:
- develop
- trunk
pull_request:
branches:
- develop
permissions:
contents: read
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set PHP version
uses: shivammathur/setup-php@9e72090525849c5e82e596468b86eb55e9cc5401 # v2.32.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