Remove Stepping and Max ID Limit #5
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: "All Pull Request Tests" | |
on: | |
pull_request: | |
branches: | |
- main | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
# We use a single job to ensure that all steps | |
# run in the same environment and reduce the number of minutes used. | |
pr-tests: | |
# Don't run on draft PRs | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: ['8.1', '8.2', '8.3'] | |
wordpress-multisite: ['false', 'true'] | |
# Timeout after 10 minutes | |
timeout-minutes: 10 | |
# Cancel any existing runs of this workflow | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.php-version }}-${{ matrix.wordpress-multisite }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run General Tests | |
# See https://github.com/alleyinteractive/action-test-general for more options | |
uses: alleyinteractive/action-test-general@develop | |
- name: Run PHP Tests | |
# See https://github.com/alleyinteractive/action-test-php for more options | |
uses: alleyinteractive/action-test-php@develop | |
with: | |
php-version: ${{ matrix.php-version }} | |
wordpress-host: 'false' | |
wordpress-multisite: ${{ matrix.wordpress-multisite }} |