diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ea1b136..5999786 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -45,10 +45,9 @@ jobs: ${{ steps.go-cache.outputs.gocache }} ${{ steps.go-cache.outputs.gomodcache }} key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - - run: go test ./... - - run: helm lint --strict ./charts - - run: make staticcheck - - run: make vulncheck + - run: make test + - run: make helm-lint + - run: make check - name: Check code format and run code generators run: | make fmt diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 4cc5243..ec3a14b 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -36,10 +36,9 @@ jobs: ${{ steps.go-cache.outputs.gocache }} ${{ steps.go-cache.outputs.gomodcache }} key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - - run: go test ./... - - run: helm lint --strict ./charts - - run: make staticcheck - - run: make vulncheck + - run: make test + - run: make helm-lint + - run: make check - name: Check code format and run code generators run: | make fmt