chore(go): scaffold module and add failing link tests
This commit is contained in:
23
justfile
Normal file
23
justfile
Normal file
@@ -0,0 +1,23 @@
|
||||
set shell := ["bash", "-eu", "-o", "pipefail", "-c"]
|
||||
|
||||
default:
|
||||
@just --list
|
||||
|
||||
go-build:
|
||||
@mkdir -p dist
|
||||
go build -o dist/homesick-go ./cmd/homesick
|
||||
|
||||
go-test:
|
||||
go test ./...
|
||||
|
||||
behavior-ruby:
|
||||
./script/run-behavior-suite-docker.sh
|
||||
|
||||
behavior-go: go-build
|
||||
HOMESICK_CMD="/workspace/dist/homesick-go" ./script/run-behavior-suite-docker.sh
|
||||
|
||||
behavior-go-verbose: go-build
|
||||
HOMESICK_CMD="/workspace/dist/homesick-go" ./script/run-behavior-suite-docker.sh --verbose
|
||||
|
||||
behavior-ruby-verbose:
|
||||
./script/run-behavior-suite-docker.sh --verbose
|
||||
Reference in New Issue
Block a user