Skip to content

Commit 9ff2bd9

Browse files
yahondaclaude
andcommitted
Set continue-on-error: false for ruby_head and truffleruby workflows
Flip continue-on-error from true to false on the ruby_head and truffleruby workflows so that a failed CI job actually fails the suite. continue-on-error: true makes job results "green even when red", and in practice failures under that mode tend to be ignored — defeating the purpose of running the job at all. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 5ea974a commit 9ff2bd9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ruby_head.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99

1010
runs-on: ubuntu-latest
11-
continue-on-error: true
11+
continue-on-error: false
1212
strategy:
1313
matrix:
1414
ruby: [

.github/workflows/truffleruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99

1010
runs-on: ubuntu-latest
11-
continue-on-error: true
11+
continue-on-error: false
1212
strategy:
1313
matrix:
1414
ruby: [

0 commit comments

Comments
 (0)