Fix typos in SRM_Post_Type #344
Workflow file for this run
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: PHPUnit | |
on: | |
push: | |
branches: | |
- develop | |
- trunk | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['7.4', '8.0', '8.1'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: getong/mariadb-action@v1.1 | |
- name: Set PHP version | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
tools: composer:v2 | |
- name: Install dependencies | |
run: composer update -W | |
- name: Setup WP Tests | |
run: bash bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 | |
- name: Run PHPUnit | |
run: './vendor/bin/phpunit' |