Skip to content

Commit 58ab077

Browse files
committed
name msrv check
1 parent 14cae8b commit 58ab077

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,19 @@ name: Continuous Integration
99
jobs:
1010
# check if the project builds with MSRV, stable and nighly
1111
build:
12+
name: "Build (${{ matrix.name || matrix.rust }})"
1213
runs-on: ubuntu-latest
1314
continue-on-error: ${{ matrix.experimental || false }}
1415
strategy:
1516
matrix:
16-
rust: [ 1.58.0, stable ]
17+
rust: [ stable ]
1718
include:
1819
# Test nightly but don't fail the build.
1920
- rust: nightly
2021
experimental: true
22+
# MSRV
23+
- rust: 1.58.0
24+
name: "MSRV"
2125
steps:
2226
- name: Checkout repository
2327
uses: actions/checkout@v3

0 commit comments

Comments
 (0)