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 6fa7697 commit c2ca75eCopy full SHA for c2ca75e
1 file changed
.github/workflows/ci.yml
@@ -12,21 +12,19 @@ jobs:
12
build:
13
runs-on: ubuntu-latest
14
steps:
15
+ - name: Check out code
16
+ uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 0
19
- name: Set up Go 1.23.2
20
uses: actions/setup-go@v5
21
id: go
22
with:
23
go-version: 1.23.2
- - name: Check out code into the Go module directory
- uses: actions/checkout@v4
- with:
- fetch-depth: 0
24
- name: Verify go.mod is sane
25
run: go mod tidy && git diff --no-patch --exit-code
26
- name: Golangci-lint
27
uses: golangci/golangci-lint-action@v6.2.0
28
- - name: Install dependencies
29
- run: go mod download
30
- name: Run unit tests
31
run: go test ./...
32
- name: GoReleaser Build Snapshot
0 commit comments