Skip to content

Commit 93bddbf

Browse files
committed
Replace dry-run publish with dart analyze in CI
In the CI workflow, the non-tagged branch step now runs 'dart analyze' instead of 'dart pub publish --dry-run' to perform static analysis rather than a dry-run publish. This improves code quality checks during CI for non-release branches.
1 parent 11f3ced commit 93bddbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ jobs:
300300
if [[ "$GITHUB_REF" == refs/tags/* ]]; then
301301
dart pub publish --force
302302
else
303-
dart pub publish --dry-run
303+
dart analyze
304304
fi
305305
popd >/dev/null
306306
}

0 commit comments

Comments
 (0)