summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2020-11-18 19:29:09 +0100
committerSanto Cariotti <santo@dcariotti.me>2020-11-18 19:29:09 +0100
commit10f9156f6283101f5f8abac5640fbc48a7ff2616 (patch)
tree5fdd17b67eb8b11fca2b2e24b00dac4e9a13017c
parent79b4ef49a60a01ea631e33bd54fe7b45f4cfd63e (diff)
ci: use cargo nightly for coverageHEADmaster
-rw-r--r--.github/workflows/rust.yml5
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: