From dcd2986724679e9ddee9e49c7d54d50711ab7476 Mon Sep 17 00:00:00 2001 From: Wainer dos Santos Moschetta Date: Wed, 14 Jul 2021 16:01:54 -0300 Subject: [PATCH] static-checks: Call the static-checks make target Instead of calling the ci/static-checks.sh script directly, it was changed the workflow to call `make static-checks`. And because the `static-checks` target depends on build, the build step in the workflow is not longer needed. Signed-off-by: Wainer dos Santos Moschetta --- .github/workflows/static-checks.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index b8337f6ebe..ce0ac2ef4c 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -63,13 +63,9 @@ jobs: - name: Check vendored code run: | cd ${GOPATH}/src/github.com/${{ github.repository }} && make vendor - # Must build before static checks as we depend on some generated code in runtime and agent - - name: Build - run: | - cd ${GOPATH}/src/github.com/${{ github.repository }} && make - name: Static Checks run: | - cd ${GOPATH}/src/github.com/${{ github.repository }} && ./ci/static-checks.sh + cd ${GOPATH}/src/github.com/${{ github.repository }} && make static-checks - name: Run Compiler Checks run: | cd ${GOPATH}/src/github.com/${{ github.repository }} && make check