From 1f38523fffe859f89d59adacfb91957c8b2cb32f Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Mon, 3 Feb 2020 18:08:56 +0000 Subject: [PATCH] CI: Use stable Rust release for code coverage Fixes an issue where cargo-tarpaulin failed to build the crate on 1.37.0, but the crate itself builds fine with that version. --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a76eb462c..1ada7e83c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,9 +69,10 @@ jobs: steps: - uses: actions/checkout@v1 + # Use stable for this to ensure that cargo-tarpaulin can be built. - uses: actions-rs/toolchain@v1 with: - toolchain: 1.37.0 + toolchain: stable override: true - name: Install cargo-tarpaulin uses: actions-rs/cargo@v1