diff options
| author | Alex Flint <[email protected]> | 2020-04-17 16:41:42 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-04-17 16:41:42 -0400 |
| commit | 912ef0c3e4d40d5c964b50d36c9fe300b5d5c1fd (patch) | |
| tree | d35b692d03b3db12c0cad1e9910ace89a057c2b1 /.github | |
| parent | f78dec87696adddc8f5a70fb59b905694cf41509 (diff) | |
| parent | 2bc58b597b016b42d8f4b3aa0b3db216426a5e61 (diff) | |
Merge pull request #114 from alexflint/migrate-to-codecov
Upload coverage to codecov
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/go.yml | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4be256c..571c285 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -24,7 +24,7 @@ jobs: with: go-version: ${{ matrix.go }} - - name: Check out code into the Go module directory + - name: Checkout uses: actions/checkout@v2 - name: Build @@ -34,17 +34,4 @@ jobs: run: go test -v -coverprofile=profile.cov . - name: Send coverage - uses: shogo82148/actions-goveralls@v1 - with: - path-to-profile: profile.cov - parallel: true - - # notifies coveralls that all test jobs are finished - finish: - name: Finish - needs: build_and_test - runs-on: ubuntu-latest - steps: - - uses: shogo82148/actions-goveralls@v1 - with: - parallel-finished: true + run: bash <(curl -s https://codecov.io/bash) -f profile.cov |
