diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index a82af1c..9ff527f 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -23,5 +23,8 @@ jobs: - name: Lint the project run: | - golint ./... + if ! golint ./...; then + echo "Go lint has found issues, please fix the changes for successful merge" + exit 1 + fi