From 1f4331e78bb6ff3967dd4c985239a487071a3cb6 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 15 Apr 2024 14:30:23 -0700 Subject: [PATCH] Add the `rust-alias` variable so that workflow names won't change with future MSRV bumps --- .github/workflows/ci.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cf289a66..1770bb30 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,17 +10,22 @@ env: jobs: build_and_test: - name: Build and test - runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - rust: [stable, '1.70', nightly] - + include: + - rust-alias: stable + rust: stable + - rust-alias: msrv + rust: '1.70' + - rust-alias: nightly + rust: nightly + name: Build and test (${{ matrix.os }}, ${{ matrix.rust-alias}}) + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@master - - name: Install ${{ matrix.rust }} + - name: Install Rust uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.rust }}