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 @@ -34,4 +34,4 @@ jobs:
just sysinfo
- name: Run Go Test
run: |
just init tidy lint test
just init tidy lint tests
8 changes: 7 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@ tidy:

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

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

# ensure copywrite headers present on source files
[group('lint')]
copywrite:
Expand Down