Skip to content

Commit

Permalink
Merge pull request #107 from jrfnl/feature/tests-use-nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy authored Oct 1, 2024
2 parents 735a612 + 04c090b commit 2d6ceb0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/reusable-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,12 @@ jobs:
"dbtype": "sqlite"
},
{
"php": "8.4",
"php": "nightly",
"wp": "trunk",
"mysql": "8.0"
},
{
"php": "8.4",
"php": "nightly",
"wp": "trunk",
"dbtype": "sqlite"
}
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
matrix: ${{ fromJson(needs.prepare-unit.outputs.matrix) }}
runs-on: ubuntu-20.04

continue-on-error: ${{ matrix.php == '8.4' }}
continue-on-error: ${{ matrix.php == 'nightly' }}

steps:
- name: Check out source code
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
matrix: ${{ fromJson(needs.prepare-functional.outputs.matrix) }}
runs-on: ubuntu-20.04

continue-on-error: ${{ matrix.dbtype == 'sqlite' || matrix.php == '8.4' }}
continue-on-error: ${{ matrix.dbtype == 'sqlite' || matrix.php == 'nightly' }}

steps:
- name: Check out source code
Expand Down

0 comments on commit 2d6ceb0

Please sign in to comment.