Skip to content

Commit

Permalink
fix build and test in workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Tony Worm <tony@hofstadter.io>
  • Loading branch information
verdverm committed Oct 12, 2021
1 parent 8d54b03 commit 3932cbb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/common/base.cue
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ import "github.com/hofstadter-io/ghacue"
run: "go mod download"
},{
name: "Build CLI"
run: "go install ./cmd/hof"
run: "go install ./cmd/cuetils"
}]
2 changes: 1 addition & 1 deletion .github/workflows/default.cue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ common.#Workflow & {
steps: [ for step in common.#BuildSteps {step} ] + [{
name: "Run tests"
run: """
hof test -t test
go test -cover ./test/cli
"""
}]
}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
- name: Build CLI
run: go install ./cmd/hof
- name: Run tests
run: hof test -t test
run: go test -cover ./test/cli
services: {}

0 comments on commit 3932cbb

Please sign in to comment.