From 4b65e6e4433a05545a7ed6324971e25ce45d15cf Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sun, 2 Aug 2020 13:00:48 +0200 Subject: [PATCH] Change MinSRV => Minimum supported Rust version --- .github/workflows/CICD.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index f336315c..817d00c3 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -4,20 +4,20 @@ env: PROJECT_NAME: bat PROJECT_DESC: "A `cat` clone with wings" PROJECT_AUTH: "sharkdp" - RUST_MIN_SRV: "1.40.0" + MIN_SUPPORTED_RUST_VERSION: "1.40.0" on: [push, pull_request] jobs: min_version: - name: MinSRV # Minimum supported rust version + name: Minimum supported rust version runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Install `rust` toolchain (v${{ env.RUST_MIN_SRV }}) + - name: Install `rust` toolchain (v${{ env.MIN_SUPPORTED_RUST_VERSION }}) uses: actions-rs/toolchain@v1 with: - toolchain: ${{ env.RUST_MIN_SRV }} + toolchain: ${{ env.MIN_SUPPORTED_RUST_VERSION }} default: true profile: minimal # minimal component installation (ie, no documentation) - name: Test