diff options
author | Santo Cariotti <santo@dcariotti.me> | 2020-11-18 19:29:09 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2020-11-18 19:29:09 +0100 |
commit | 10f9156f6283101f5f8abac5640fbc48a7ff2616 (patch) | |
tree | 5fdd17b67eb8b11fca2b2e24b00dac4e9a13017c | |
parent | 79b4ef49a60a01ea631e33bd54fe7b45f4cfd63e (diff) |
-rw-r--r-- | .github/workflows/rust.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index df0ced1..3c7cc2f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,15 +16,12 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Install dependecies - run: | - cargo install cargo-tarpaulin - name: Build run: cargo build --verbose - name: Run tests run: cargo test --verbose - name: Generate code coverage - run: cargo tarpaulin -v --out Xml + run: cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out Xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 with: |