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 4a941d1 commit eb76949Copy full SHA for eb76949
.circleci/config.yml
@@ -6,6 +6,8 @@ workflows:
6
jobs:
7
- build
8
- clippy
9
+ - coverage
10
+
11
12
build:
13
docker:
@@ -41,3 +43,17 @@ jobs:
41
43
- run:
42
44
name: Run cargo clippy
45
command: cargo clippy --all-features -- -Drust-2018-idioms -Dwarnings
46
47
+ coverage:
48
+ machine: true
49
+ steps:
50
+ - checkout
51
+ - run:
52
+ name: Generate report
53
+ command: >
54
+ docker run --security-opt seccomp=unconfined -v $PWD:/volume
55
+ xd009642/tarpaulin:latest-nightly cargo tarpaulin -v --ciserver circle-ci
56
+ --out Lcov --all-features -- --test-threads 1
57
58
+ name: Upload
59
+ command: bash <(curl -s https://codecov.io/bash) -Z -f
0 commit comments