Fix a bug in where condition when persisting entity #163
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: Test | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**/README.md' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- '**/README.md' | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php: ['8.0', '8.1', '8.2'] | |
experimental: [false] | |
include: | |
- php: '8.3' | |
experimental: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Spin up Docker containers | |
run: make reset-containers | |
- name: Setup PHP | |
id: setup-php | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip | |
tools: composer:v2 | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- 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 composer dependencies | |
if: matrix.experimental == false | |
run: composer install | |
- name: Install composer dependencies for experimental PHP versions | |
if: matrix.experimental == true | |
run: composer install --ignore-platform-req=php+ | |
- name: Install WordPress | |
run: | | |
make pause | |
make install | |
- name: Launch test suite | |
run: make test |