Skip to content

update dependencies and more #1

update dependencies and more

update dependencies and more #1

Workflow file for this run

name: E2E Tests
on:
pull_request:
jobs:
e2e_tests:
name: >

Check failure on line 8 in .github/workflows/test-e2e-matrix.yml

View workflow run for this annotation

GitHub Actions / E2E Tests

Invalid workflow file

The workflow is not valid. .github/workflows/test-e2e-matrix.yml (Line: 8, Col: 11): Unexpected symbol: ')'. Located at position 64 within expression: format( 'WP{0} + PHP{1}', matrix.wp, matrix.php, ) .github/workflows/test-e2e-matrix.yml (Line: 31, Col: 14): Unexpected symbol: ')'. Located at position 66 within expression: format( 'e2e-WP{0}-PHP{1}', matrix.wp, matrix.php, )
E2E - ${{
format(
'WP{0} + PHP{1}',
matrix.wp,
matrix.php,
)
}}
uses: ./.github/workflows/test-e2e.yml
strategy:
fail-fast: false
matrix:
wp: # Test against Prev-Prev Major, Prev-Major, and current Major release versions.
- '6.5'
- '6.6'
- '6.7'
php: # Test against minimum and latest PHP versions.
- '7.4'
- '8.3'
with:
wpVersion: ${{matrix.wp}}
phpVersion: ${{matrix.php}}
concurrency:
group: >
${{
format(
'e2e-WP{0}-PHP{1}',
matrix.wp,
matrix.php,
)
}}
cancel-in-progress: true