We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e55f5ec commit 9c81fa0Copy full SHA for 9c81fa0
.github/workflows/rust.yml
@@ -11,6 +11,20 @@ jobs:
11
run: cargo build --all-targets --verbose
12
- name: Run tests
13
run: cargo test --verbose
14
+ coverage:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v1
18
+ - name: Install stable toolchain
19
+ uses: actions-rs/toolchain@v1
20
+ with:
21
+ toolchain: stable
22
+ - name: Run cargo-tarpaulin
23
+ uses: actions-rs/[email protected]
24
+ - name: Upload to codecov.io
25
+ uses: codecov/codecov-action@v1
26
27
+ token: ${{ secrets.CODECOV_TOKEN }}
28
release:
29
runs-on: ubuntu-latest
30
needs: build
0 commit comments