File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed
Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 5757 run : cargo test --workspace --release
5858 msrv :
5959 name : " Check MSRV"
60- runs-on : ubuntu-latest
60+ strategy :
61+ matrix :
62+ os : ["ubuntu-latest"]
63+ runs-on : ${{ matrix.os }}
6164 steps :
6265 - name : Checkout repository
6366 uses : actions/checkout@v6
7174 run : cargo hack check --each-feature --locked --rust-version --ignore-private --workspace --all-targets --keep-going --exclude-features nightly
7275 minimal-versions :
7376 name : Minimal versions
74- runs-on : ubuntu-latest
77+ strategy :
78+ matrix :
79+ os : ["ubuntu-latest"]
80+ runs-on : ${{ matrix.os }}
7581 steps :
7682 - name : Checkout repository
7783 uses : actions/checkout@v6
Original file line number Diff line number Diff line change 4545 run : cargo hack test --each-feature --workspace --exclude-features nightly
4646 latest :
4747 name : " Check latest dependencies"
48- runs-on : ubuntu-latest
48+ strategy :
49+ matrix :
50+ os : ["ubuntu-latest"]
51+ runs-on : ${{ matrix.os }}
52+ env :
53+ CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS : allow
4954 steps :
5055 - name : Checkout repository
5156 uses : actions/checkout@v6
Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ str_to_string = "warn"
8282string_add = " warn"
8383string_add_assign = " warn"
8484string_lit_as_bytes = " warn"
85- string_to_string = " warn"
8685todo = " warn"
8786trait_duplication_in_bounds = " warn"
8887uninlined_format_args = " warn"
You can’t perform that action at this time.
0 commit comments