We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42779dc commit c4de856Copy full SHA for c4de856
1 file changed
.github/workflows/rust.yml
@@ -23,3 +23,20 @@ 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
+ cd ndarray-linalg
37
+ cargo tarpaulin --verbose --features=intel-mkl --out Xml
38
+ mv *.xml ..
39
+ - name: Upload to codecov.io
40
+ uses: codecov/codecov-action@v1
41
+ with:
42
+ fail_ci_if_error: true
0 commit comments