From 897f49a45239a66b911df2aaca6a2d00add74e7e Mon Sep 17 00:00:00 2001 From: John Rowley Date: Fri, 11 Apr 2025 11:44:27 -0700 Subject: [PATCH] chore(ci): call linter in ci --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 575d2be..11e1b7d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -42,6 +42,9 @@ jobs: restore-keys: | ${{ runner.os }}-tests- + - name: Run linter + run: make vet + - name: Run tests run: git --no-pager diff --exit-code HEAD~1 HEAD **/**.go templates/ || make tests