We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d29768a commit cddd6a2Copy full SHA for cddd6a2
.github/workflows/release.yml
@@ -22,6 +22,11 @@ jobs:
22
with:
23
go-version: '1.24'
24
25
+ - name: Verify go.mod is tidy
26
+ run: |
27
+ go mod tidy
28
+ git diff --exit-code
29
+
30
- name: Run GoReleaser
31
uses: goreleaser/goreleaser-action@v6
32
.github/workflows/unit-tests.yaml
@@ -24,6 +24,10 @@ jobs:
uses: actions/setup-go@v5
- name: Run unit tests
run: go test ./...
33
- name: Execute main binary # Test the runtime for potential panics.
0 commit comments