Skip to content

Commit

Permalink
fix(ci): install cargo-tarpaulin manually
Browse files Browse the repository at this point in the history
  • Loading branch information
jeertmans committed Sep 18, 2024
1 parent df34f56 commit d1673bf
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,23 @@ jobs:

cargo-tarpaulin:
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin
options: --security-opt seccomp=unconfined
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5

- name: Install NumPy
run: pip install numpy

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

- uses: taiki-e/install-action@v2
with:
tool: cargo-tarpaulin@0.31.2

- name: Generate code coverage
run: cargo tarpaulin --verbose --timeout 120 --out xml

Expand Down

0 comments on commit d1673bf

Please sign in to comment.