Skip to content

Commit 9914662

Browse files
committed
ci: drop --no-fatal-infos from the analyze steps
Both workflows invoke `flutter analyze --no-fatal-infos` directly rather than going through `./bin/mise run analyze`, so without this the previous commit only tightens the local gate and CI stays advisory — which is the regression #524 is about. `.github/workflows/` is on the AGENTS.md Do-Not-Modify list, so this is kept as a separate commit: it can be dropped on its own if the maintainer would rather have the workflows call the mise task instead. Refs #524
1 parent 0d17f37 commit 9914662

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
generate-mocks: 'true'
156156

157157
- name: Analyze code
158-
run: flutter analyze --no-fatal-infos
158+
run: flutter analyze
159159

160160
# Run tests once before building
161161
test:

.github/workflows/release-web.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
generate-mocks: 'true'
4141

4242
- name: Analyze code
43-
run: flutter analyze --no-fatal-infos
43+
run: flutter analyze
4444

4545
- name: Run tests
4646
run: flutter test

0 commit comments

Comments
 (0)