diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3c8002f3..b2446597 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -174,10 +174,16 @@ jobs: uses: actions-rs/tarpaulin@v0.1 with: version: '0.15.0' - args: '--all-features -- --test-threads 1' + args: '--out Xml --out Lcov --all-features -- --test-threads 1' - name: Archive code coverage results uses: actions/upload-artifact@v1 with: name: code-coverage-report - path: cobertura.xml \ No newline at end of file + path: cobertura.xml + + - name: Upload to Coveralls + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + path-to-lcov: './lcov.info' \ No newline at end of file