Skip to content

Commit

Permalink
Merge pull request #215 from rust-ndarray/coverage-tarpaulin
Browse files Browse the repository at this point in the history
Add coverage check
  • Loading branch information
termoshtt authored Jul 28, 2020
2 parents 42779dc + c42afc4 commit c027ef0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,16 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: clippy

coverage:
runs-on: ubuntu-18.04
container:
image: rustmath/mkl-rust:1.43.0
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v2
- name: Generate code coverage
run: |
cargo tarpaulin --verbose --features=intel-mkl --out Xml --manifest-path=ndarray-linalg/Cargo.toml
- name: Upload to codecov.io
uses: codecov/codecov-action@v1

0 comments on commit c027ef0

Please sign in to comment.