Skip to content

Commit 4f5ec80

Browse files
fix - trying to crash GA with lint
1 parent 8962adc commit 4f5ec80

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/linting.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,8 @@ jobs:
2323

2424
- name: Lint the project
2525
run: |
26-
golint ./...
26+
if ! golint ./...; then
27+
echo "Go lint has found issues, please fix the changes for successful merge"
28+
exit 1
29+
fi
2730

0 commit comments

Comments
 (0)