Skip to content

Commit

Permalink
fix: using the right file path would help
Browse files Browse the repository at this point in the history
  • Loading branch information
zjrgov committed Dec 18, 2024
1 parent 4826917 commit 3510063
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cf-driver-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
go-version-file: "./runner/cf-driver-go/go.mod"

- name: Format
run: go fmt ./...
run: go fmt ./runner/cf-driver-go/...

- name: Vet
run: go vet ./...
run: go vet ./runner/cf-driver-go/...

- name: Build
run: go build -v ./...
run: go build -v ./runner/cf-driver-go/...

- name: Test
run: go test -v ./...
run: go test -v ./runner/cf-driver-go/...

0 comments on commit 3510063

Please sign in to comment.