Skip to content

Commit 403c93a

Browse files
committed
fixup
1 parent 1aa1413 commit 403c93a

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/ci.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,19 @@ on:
88
- trying
99

1010
jobs:
11-
1211
check:
1312
name: check
1413
runs-on: ubuntu-latest
1514
strategy:
1615
matrix:
1716
build: [msrv, stable]
18-
features: ["", "--no-default-features", "--no-default-features --features use_alloc", "--all-targets --all-features"]
17+
features:
18+
[
19+
"",
20+
"--no-default-features",
21+
"--no-default-features --features use_alloc",
22+
"--all-targets --all-features",
23+
]
1924
include:
2025
- build: msrv
2126
rust: 1.62.1
@@ -40,13 +45,12 @@ jobs:
4045
- uses: dtolnay/rust-toolchain@stable
4146
- run: cargo test --all-features
4247

43-
4448
# https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149
4549
end-success:
4650
name: bors build finished
4751
if: success()
4852
runs-on: ubuntu-latest
49-
needs: [msrv,stable]
53+
needs: [check, test]
5054

5155
steps:
5256
- name: Mark the job as successful

0 commit comments

Comments
 (0)