Skip to content

Commit e01be81

Browse files
authored
Merge pull request #2395 from smoench/fix-ci
allow CI to fail for unstable Symfony run
2 parents abaa592 + 03fb13a commit e01be81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515
phpunit:
1616
name: "PHPUnit"
17-
runs-on: "ubuntu-20.04"
17+
runs-on: "ubuntu-22.04"
1818
continue-on-error: ${{ matrix.can-fail }}
1919

2020
strategy:
@@ -49,11 +49,11 @@ jobs:
4949
symfony-require: "6.3.*"
5050
- php-version: 8.2
5151
composer-flags: ""
52-
can-fail: false
52+
can-fail: true # we don't want to fail the build if we are incompatible with the next (unstable) Symfony version
5353

5454
steps:
5555
- name: "Checkout"
56-
uses: "actions/checkout@v3"
56+
uses: "actions/checkout@v4"
5757

5858
- name: "Install PHP with XDebug"
5959
uses: "shivammathur/setup-php@v2"

0 commit comments

Comments
 (0)