Skip to content

Fix a bug in where condition when persisting entity #164

Fix a bug in where condition when persisting entity

Fix a bug in where condition when persisting entity #164

Workflow file for this run

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', '8.3']
experimental: [false]
include:
- php: '8.4'
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