From 1d1504e0ba8ed346642e8234dff772ef60d1228a Mon Sep 17 00:00:00 2001 From: ISibboI Date: Sun, 4 Jun 2023 09:35:16 +0300 Subject: [PATCH] Add nightly toolchain to test coverage CI. --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d5ee30..6fb1f6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -282,13 +282,20 @@ jobs: target key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - - name: Install toolchain + - name: Install stable toolchain uses: actions-rs/toolchain@v1 with: toolchain: stable override: true default: true + - name: Install nightly toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + default: false + - name: Install cargo-tarpaulin uses: actions-rs/install@v0.1 with: