diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 79f6f2066e38f91d862453c39f0c25797546a42a..48a3feba4b29e9de039cbf73b4ab76f7e1d6ac30 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -53,7 +53,7 @@ jobs: else go get -v -t -d ./... fi - + - name: Verify run: | make verify @@ -61,6 +61,12 @@ jobs: - name: Integrate Test run: | chmod +x integrate_test.sh && ./integrate_test.sh + + - name: Install go ci lint + run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.27.0 + + - name: Run Linter + run: golangci-lint run --timeout=10m -v - name: Post Coverage run: bash <(curl -s https://codecov.io/bash)