Skip to content

Commit

Permalink
Add nightly coding standards testing and update the test names again.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbillion committed Nov 30, 2024
1 parent 72ab26d commit ec52bd4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
test:
name: WP ${{ matrix.wp }} / PHP ${{ matrix.php }}
name: WP ${{ matrix.wp }}
uses: johnbillion/plugin-infrastructure/.github/workflows/reusable-integration-tests.yml@trunk
strategy:
matrix:
Expand Down
20 changes: 18 additions & 2 deletions .github/workflows/nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,27 @@ on:
workflow_dispatch:

jobs:
test:
name: Nightly integration / PHP ${{ matrix.php }}
standards:
name: Nightly ${{ matrix.label }}
strategy:
matrix:
label:
- 'standards'
php:
# Newest and oldest supported versions of PHP
- '8.4'
- '7.4'
fail-fast: false
uses: johnbillion/plugin-infrastructure/.github/workflows/reusable-coding-standards.yml@trunk
with:
php: ${{ matrix.php }}
integration:
name: Nightly ${{ matrix.label }}
uses: johnbillion/plugin-infrastructure/.github/workflows/reusable-integration-tests.yml@trunk
strategy:
matrix:
label:
- 'integration'
php:
# Newest and oldest supported versions of PHP
- '8.4'
Expand Down

0 comments on commit ec52bd4

Please sign in to comment.