Skip to content

Commit e9e2000

Browse files
committed
Fix golangci-lint configuration version to be string
1 parent 9f9082b commit e9e2000

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/go.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
1818
with:
19-
go-version: 1.24
19+
go-version: 1.24 # TODO: matrix
2020

21-
- name: build
21+
- name: Build
2222
run: go build -v ./...
2323

2424
test:
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Go
3030
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
3131
with:
32-
go-version: 1.24
32+
go-version: 1.24 # TODO: matrix
3333

3434
- name: Test
3535
run: go test -v -race ./...
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
version: v2.5.0
4646

47-
- name: Run Mage
47+
- name: Run linter
4848
uses: magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b # v3.1.0
4949
with:
5050
version: latest

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2
1+
version: "2"
22
linters:
33
exclusions:
44
rules:

0 commit comments

Comments
 (0)