From 7a54b347f7a916a407981720b2b9e0da2978aa93 Mon Sep 17 00:00:00 2001 From: Waffle Maybe Date: Fri, 25 Mar 2022 13:19:57 +0400 Subject: [PATCH] Fix name of the nightly CI job --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a34b58a0..28110882 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,14 +51,17 @@ jobs: rust: - stable - beta - - nightly-2022-01-17 + - nightly include: - rust: stable + toolchain: stable features: "--features full" - rust: beta + toolchain: beta features: "--features full" - - rust: nightly-2022-01-17 + - rust: nightly + toolchain: nightly-2022-01-17 features: "--all-features" steps: @@ -67,7 +70,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: ${{ matrix.rust }} + toolchain: ${{ matrix.toolchain }} override: true - name: build