We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69855c1 commit 4a63acdCopy full SHA for 4a63acd
1 file changed
.github/workflows/main.yml
@@ -15,19 +15,10 @@ jobs:
15
steps:
16
- uses: actions/checkout@v3
17
18
- - name: Install Rust Stable
19
- run: |
20
- rustup override set stable
21
- rustup update stable
22
- rustup component add llvm-tools-preview
23
-
24
- - name: Install cargo-llvm-cov
25
- uses: taiki-e/install-action@cargo-llvm-cov
26
27
- - name: Test and Generate code coverage
28
- run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
29
- - name: Upload coverage to Codecov
30
- uses: codecov/codecov-action@v3
+ - uses: actions-rs/toolchain@v1
31
with:
32
- files: lcov.info
33
- fail_ci_if_error: true
+ toolchain: stable
+ override: true
+
+ - name: Test with default feature
+ run: cargo test
0 commit comments