diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c942d7..58846f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,13 +30,17 @@ jobs: with: go-version: ${{ matrix.go }} - - name: Install dependencies + - name: Download dependencies run: go mod download + - name: Tidy dependencies + run: go mod tidy + - name: Run static analysis uses: golangci/golangci-lint-action@v5 with: version: v1.57 + args: --timeout=5m - name: Run unit tests run: go test -v ./... \ No newline at end of file