We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89631fe commit 46a5462Copy full SHA for 46a5462
1 file changed
.github/workflows/test.yml
@@ -10,13 +10,11 @@ env:
10
CARGO_TERM_COLOR: always
11
12
jobs:
13
- build:
+ test:
14
runs-on: ubuntu-latest
15
16
steps:
17
- uses: actions/checkout@v4
18
- with:
19
- fetch-depth: 2
20
21
- name: Build
22
run: cargo build --verbose --all-targets
@@ -39,6 +37,14 @@ jobs:
39
37
- name: Clippy (All Features)
40
38
run: cargo clippy --all-targets --all-features
41
+ coverage:
+ runs-on: ubuntu-latest
42
+
43
+ steps:
44
+ - uses: actions/checkout@v4
45
+ with:
46
+ fetch-depth: 2
47
48
- name: Install cargo-llvm-cov
49
uses: taiki-e/install-action@cargo-llvm-cov
50
0 commit comments