Skip to content

Commit

Permalink
install rather than build
Browse files Browse the repository at this point in the history
Signed-off-by: Tony Worm <tony@hofstadter.io>
  • Loading branch information
verdverm committed Aug 2, 2021
1 parent 2cc484c commit ec0a668
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/default.cue
Expand Up @@ -22,10 +22,10 @@ ghacue.#Workflow & {
run: "go mod download"
},{
name: "Build CLI"
run: "go build -o hof ./cmd/hof"
run: "go install ./cmd/hof"
},{
name: "Run tests"
run: "./hof test test.cue"
run: "hof test test.cue"
}]
}
}
4 changes: 2 additions & 2 deletions .github/workflows/default.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Download mods
run: go mod download
- name: Build CLI
run: go build -o hof ./cmd/hof
run: go install ./cmd/hof
- name: Run tests
run: ./hof test test.cue
run: hof test test.cue
services: {}

0 comments on commit ec0a668

Please sign in to comment.