Skip to content
Open
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
15 changes: 15 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,21 @@ release: dist-macos dist-linux
@ls -lh dist/


# Run all tests (unit + integration)
test: build test-unit test-integration

# Run unit tests only
test-unit:
go test -v ./...

# Run integration tests only
test-integration: build
./spec/tests/runner.sh ./try

# Run tests with race detection
test-race:
go test -race -v ./...

# Format code
fmt:
go fmt ./...
Expand Down
Loading