Skip to content

Commit

Permalink
test submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
nikandfor committed Feb 9, 2025
1 parent c9dd52a commit 0c46934
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ jobs:
- name: Test Race
run: go test -race -v ./...

- name: Test Submodules
run: find . -name go.mod | while read f; do go -C $(dirname $f) test ./...; done

- name: Test Race Submodules
run: find . -name go.mod | while read f; do go -C $(dirname $f) test -race ./...; done

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
if: ${{ matrix.cover }}
Expand Down

0 comments on commit 0c46934

Please sign in to comment.