Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ jobs:
just sysinfo
- name: Run Go Test
run: |
just init tidy lint test
just init tidy lint tests

4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,10 @@
# OS files
**/.DS_Store

# Build artifacts
site

# Go workspace file
go.work
go.work.sum

# Local source and binary files
.src/
.bin/

8 changes: 7 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ default:
tidy:
go mod tidy

# run specific unit test
[group('build')]
[no-cd]
test unit:
go test -v -count=1 -race -run {{unit}} 2>/dev/null

# run tests across source tree
[group('build')]
test:
tests:
go test -v -race -count=1 ./...

# apply go vet command on source tree
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cattlecloud.net/go/circlebuffer

go 1.24
go 1.26

require github.com/shoenig/test v1.13.2

Expand Down