summaryrefslogtreecommitdiff
path: root/.github/workflows/go.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r--.github/workflows/go.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index 21391e4..55ecca8 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -7,7 +7,6 @@ on:
push:
branches: [ "main" ]
pull_request:
- branches: [ "main" ]
jobs:
@@ -20,6 +19,7 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: stable
+ cache: false
- name: Lint
uses: golangci/golangci-lint-action@v6
@@ -30,4 +30,4 @@ jobs:
run: go build -v ./...
- name: Test
- run: go test -v ./...
+ run: go test -cover ./...