Skip to content

Commit 4887f4e

Browse files
authored
deps: update to go 1.26 (#14)
1 parent ee923b4 commit 4887f4e

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ jobs:
2424
just sysinfo
2525
- name: Run Go Test
2626
run: |
27-
just init tidy lint test
27+
just init tidy lint tests
2828

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,10 @@
44
# OS files
55
**/.DS_Store
66

7-
# Build artifacts
8-
site
9-
107
# Go workspace file
118
go.work
129
go.work.sum
1310

1411
# Local source and binary files
1512
.src/
1613
.bin/
17-

Justfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,15 @@ default:
1313
tidy:
1414
go mod tidy
1515

16+
# run specific unit test
17+
[group('build')]
18+
[no-cd]
19+
test unit:
20+
go test -v -count=1 -race -run {{unit}} 2>/dev/null
21+
1622
# run tests across source tree
1723
[group('build')]
18-
test:
24+
tests:
1925
go test -v -race -count=1 ./...
2026

2127
# apply go vet command on source tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module cattlecloud.net/go/circlebuffer
22

3-
go 1.24
3+
go 1.26
44

55
require github.com/shoenig/test v1.13.2
66

0 commit comments

Comments
 (0)