Skip to content

Commit

Permalink
Update test matrix schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
mleczakm authored Nov 30, 2023
1 parent c495750 commit 69ef2ab
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push: ~
schedule:
# Do not make it the first of the month and/or midnight since it is a very busy time
- cron: "* 10 5 * *"
- cron: "10 10 5 * *"

jobs:
tests:
Expand All @@ -15,22 +15,19 @@ jobs:
fail-fast: false
matrix:
#Stable supported versions
php: ['8.1', '8.2']
symfony: ['5.4.*', '6.2.*']
php: ['8.2', '8.3']
symfony: ['6.4.*', '7.0.*']
composer-flags: ['--prefer-stable']
can-fail: [false]
exclude:
- php: '8.1'
symfony: '6.2.*'
include:
# Lowest supported versions
- php: '8.1'
symfony: '5.4.*'
- php: '8.2'
symfony: '6.0.*'
composer-flags: '--prefer-stable --prefer-lowest'
can-fail: false
# Development versions
- php: '8.3'
symfony: '6.3.x-dev'
symfony: '7.0.x-dev'
composer-flags: ''
can-fail: true

Expand Down

0 comments on commit 69ef2ab

Please sign in to comment.