File tree Expand file tree Collapse file tree 5 files changed +22
-20
lines changed Expand file tree Collapse file tree 5 files changed +22
-20
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
- on :
3
- push :
4
- branches :
5
- - staging
6
- - trying
2
+ on : merge_group
7
3
8
4
jobs :
9
5
19
15
nightly,
20
16
]
21
17
steps :
22
- - uses : actions/checkout@v3
18
+ - uses : actions/checkout@v4
23
19
- uses : dtolnay/rust-toolchain@master
24
20
with :
25
21
toolchain : ${{ matrix.rust }}
31
27
name : No Std
32
28
runs-on : ubuntu-latest
33
29
steps :
34
- - uses : actions/checkout@v3
30
+ - uses : actions/checkout@v4
35
31
- uses : dtolnay/rust-toolchain@stable
36
32
with :
37
33
target : thumbv6m-none-eabi
41
37
name : Format
42
38
runs-on : ubuntu-latest
43
39
steps :
44
- - uses : actions/checkout@v3
40
+ - uses : actions/checkout@v5
45
41
46
42
with :
47
43
components : rustfmt
48
44
- run : cargo fmt --all --check
45
+
46
+ done :
47
+ name : Complete
48
+ runs-on : ubuntu-latest
49
+ needs : [test, no_std, fmt]
50
+ steps :
51
+ - run : exit 0
Original file line number Diff line number Diff line change 15
15
matrix :
16
16
rust : [1.31.0, stable]
17
17
steps :
18
- - uses : actions/checkout@v3
18
+ - uses : actions/checkout@v4
19
19
- uses : dtolnay/rust-toolchain@master
20
20
with :
21
21
toolchain : ${{ matrix.rust }}
Original file line number Diff line number Diff line change 11
11
matrix :
12
12
rust : [1.31.0, stable]
13
13
steps :
14
- - uses : actions/checkout@v3
14
+ - uses : actions/checkout@v4
15
15
- uses : dtolnay/rust-toolchain@master
16
16
with :
17
17
toolchain : ${{ matrix.rust }}
22
22
name : Format
23
23
runs-on : ubuntu-latest
24
24
steps :
25
- - uses : actions/checkout@v3
25
+ - uses : actions/checkout@v4
26
26
27
27
with :
28
28
components : rustfmt
29
29
- run : cargo fmt --all --check
30
+
31
+ done :
32
+ name : Complete
33
+ runs-on : ubuntu-latest
34
+ needs : [test, fmt]
35
+ steps :
36
+ - run : exit 0
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ repository = "https://github.com/rust-num/num-integer"
10
10
name = " num-integer"
11
11
version = " 0.1.45"
12
12
readme = " README.md"
13
- exclude = [" /bors.toml " , " / ci/*" , " /.github/*" ]
13
+ exclude = [" /ci/*" , " /.github/*" ]
14
14
edition = " 2018"
15
15
rust-version = " 1.31"
16
16
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments