Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,19 @@ jobs:
cache: true

- name: Verify root tests
run: go test ./...
run: go test ./... -coverprofile=coverage.txt

- name: Verify race detector
run: go test -race ./...

- name: Verify go vet
run: go vet ./...

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
Comment thread
rluders marked this conversation as resolved.

validation-playground:
name: Validation submodule
runs-on: ubuntu-latest
Expand Down
Loading