Skip to content

Commit

Permalink
build: fix path error
Browse files Browse the repository at this point in the history
  • Loading branch information
hexian000 committed Oct 24, 2023
1 parent 083b1cc commit 735f87a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
(cd v2 && go mod vendor)
- name: Build
run: go build -v ./v2/...
run: (cd v2 && go build -v ./...)

- name: Test
run: go test -v ./v2/...
run: (cd v2 && go test -v ./...)

0 comments on commit 735f87a

Please sign in to comment.