ci: Remove MSRV from job name

… so we don't have to update branch protection rules whenever we bump the MSRV.
This commit is contained in:
Jonas Platte 2024-01-11 16:49:43 +01:00
parent a7e1d7fa49
commit 0453a27838

View File

@ -67,7 +67,7 @@ jobs:
run: target/debug/xtask ci lint run: target/debug/xtask ci lint
msrv: msrv:
name: Rust 1.75 / ${{ matrix.name }} name: Minimum Supported Rust Version / ${{ matrix.name }}
needs: xtask needs: xtask
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
@ -92,7 +92,7 @@ jobs:
- name: Checkout repo - name: Checkout repo
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install rust 1.75 toolchain - name: Install MSRV toolchain
uses: dtolnay/rust-toolchain@master uses: dtolnay/rust-toolchain@master
with: with:
toolchain: "1.75" toolchain: "1.75"