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
msrv:
name: Rust 1.75 / ${{ matrix.name }}
name: Minimum Supported Rust Version / ${{ matrix.name }}
needs: xtask
runs-on: ubuntu-latest
strategy:
@ -92,7 +92,7 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install rust 1.75 toolchain
- name: Install MSRV toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.75"