We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 42779dc + c42afc4 commit c027ef0Copy full SHA for c027ef0
1 file changed
.github/workflows/rust.yml
@@ -23,3 +23,16 @@ jobs:
23
- uses: actions-rs/cargo@v1
24
with:
25
command: clippy
26
+
27
+ coverage:
28
+ runs-on: ubuntu-18.04
29
+ container:
30
+ image: rustmath/mkl-rust:1.43.0
31
+ options: --security-opt seccomp=unconfined
32
+ steps:
33
+ - uses: actions/checkout@v2
34
+ - name: Generate code coverage
35
+ run: |
36
+ cargo tarpaulin --verbose --features=intel-mkl --out Xml --manifest-path=ndarray-linalg/Cargo.toml
37
+ - name: Upload to codecov.io
38
+ uses: codecov/codecov-action@v1
0 commit comments