From dce5ce8478034a641cff5fcec5c23f8a17a479c8 Mon Sep 17 00:00:00 2001 From: Tei Im Date: Wed, 10 Apr 2024 16:23:32 -0600 Subject: [PATCH] Upload rvgo coverage to Codecov --- .github/workflows/ci.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3b03aa2e..65b416fc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,10 +21,14 @@ jobs: run: make bin bin/simple bin/minimal working-directory: tests/go-tests - name: Run tests - run: go test -v ./... - working-directory: rvgo + run: go test -v ./rvgo/... -coverprofile=coverage.out -coverpkg=./rvgo/... - name: Fuzz run: make fuzz + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} + verbose: true rvsol-tests: runs-on: ubuntu-latest timeout-minutes: 20