Skip to content

Commit

Permalink
Merge pull request #2395 from smoench/fix-ci
Browse files Browse the repository at this point in the history
allow CI to fail for unstable Symfony run
  • Loading branch information
goetas committed Sep 27, 2023
2 parents abaa592 + 03fb13a commit e01be81
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
phpunit:
name: "PHPUnit"
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-22.04"
continue-on-error: ${{ matrix.can-fail }}

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

steps:
- name: "Checkout"
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: "Install PHP with XDebug"
uses: "shivammathur/setup-php@v2"
Expand Down

0 comments on commit e01be81

Please sign in to comment.