|
|
@@ -0,0 +1,25 @@
|
|
|
+name: Coverage
|
|
|
+
|
|
|
+on:
|
|
|
+ push:
|
|
|
+ branches: ['master']
|
|
|
+ pull_request:
|
|
|
+
|
|
|
+jobs:
|
|
|
+ coverage:
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ steps:
|
|
|
+ - uses: actions/checkout@v1
|
|
|
+ - uses: actions-rs/toolchain@v1
|
|
|
+ with:
|
|
|
+ profile: minimal
|
|
|
+ toolchain: stable
|
|
|
+ override: true
|
|
|
+ - uses: actions-rs/tarpaulin@v0.1
|
|
|
+ - uses: codecov/codecov-action@v1.0.2
|
|
|
+ with:
|
|
|
+ token: ${{secrets.CODECOV_TOKEN}}
|
|
|
+ - uses: actions/upload-artifact@v1
|
|
|
+ with:
|
|
|
+ name: code-coverage-report
|
|
|
+ path: cobertura.xml
|