Skip to content

Commit

Permalink
Merge branch 'google:main' into maven
Browse files Browse the repository at this point in the history
  • Loading branch information
cuixq authored Dec 16, 2024
2 parents db26edd + d1af9d1 commit f03f33d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
- name: Build examples
working-directory: examples/go/
run: find . -name 'go.mod' -execdir go build \;
run: for DIR in $(find . -name 'go.mod'); do cd $(dirname $DIR); go build || exit 1; cd -; done

- name: Run util tests
working-directory: util/
run: find . -name 'go.mod' -execdir go test ./... \;
run: for DIR in $(find . -name 'go.mod'); do cd $(dirname $DIR); go test ./... || exit 1; cd -; done

0 comments on commit f03f33d

Please sign in to comment.