We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14cae8b commit 58ab077Copy full SHA for 58ab077
.github/workflows/ci.yml
@@ -9,15 +9,19 @@ name: Continuous Integration
9
jobs:
10
# check if the project builds with MSRV, stable and nighly
11
build:
12
+ name: "Build (${{ matrix.name || matrix.rust }})"
13
runs-on: ubuntu-latest
14
continue-on-error: ${{ matrix.experimental || false }}
15
strategy:
16
matrix:
- rust: [ 1.58.0, stable ]
17
+ rust: [ stable ]
18
include:
19
# Test nightly but don't fail the build.
20
- rust: nightly
21
experimental: true
22
+ # MSRV
23
+ - rust: 1.58.0
24
+ name: "MSRV"
25
steps:
26
- name: Checkout repository
27
uses: actions/checkout@v3
0 commit comments