@@ -20,54 +20,41 @@ jobs:
2020 nightly
2121 ]
2222 steps :
23- - name : Rust install
24- uses : dtolnay/rust-toolchain@master
23+ - uses : actions/checkout@v3
24+ - uses : dtolnay/rust-toolchain@master
2525 with :
2626 toolchain : ${{ matrix.rust }}
27- - name : Checkout
28- uses : actions/checkout@v3
29- - name : Build
30- run : cargo build
31- - name : Test
32- run : ./ci/test_full.sh
27+ - run : cargo build
28+ - run : ./ci/test_full.sh
3329
3430 # try a target that doesn't have std at all, but does have alloc
3531 no_std_stable :
3632 name : No Std (stable)
3733 runs-on : ubuntu-latest
3834 steps :
39- - name : Rust install
40- uses : dtolnay/rust-toolchain@stable
35+ - uses : actions/checkout@v3
36+ - uses : dtolnay/rust-toolchain@stable
4137 with :
4238 target : thumbv6m-none-eabi
43- - name : Checkout
44- uses : actions/checkout@v3
45- - name : Build
46- run : cargo build --target thumbv6m-none-eabi --no-default-features --features "num-bigint serde"
39+ - run : cargo build --target thumbv6m-none-eabi --no-default-features --features "num-bigint serde"
4740
4841 # try a target that doesn't have std at all, nor alloc
4942 no_std_131 :
5043 name : No Std (1.31.0)
5144 runs-on : ubuntu-latest
5245 steps :
53- - name : Rust install
54- uses : dtolnay/rust-toolchain@1.31.0
46+ - uses : actions/checkout@v3
47+ - uses : dtolnay/rust-toolchain@1.31.0
5548 with :
5649 target : thumbv6m-none-eabi
57- - name : Checkout
58- uses : actions/checkout@v3
59- - name : Build
60- run : cargo build --target thumbv6m-none-eabi --no-default-features --features "serde"
50+ - run : cargo build --target thumbv6m-none-eabi --no-default-features --features "serde"
6151
6252 fmt :
6353 name : Format
6454 runs-on : ubuntu-latest
6555 steps :
66- - name : Rust install
67- uses : dtolnay/rust-toolchain@1.62.0
56+ - uses : actions/checkout@v3
57+ - uses : dtolnay/rust-toolchain@1.62.0
6858 with :
6959 components : rustfmt
70- - name : Checkout
71- uses : actions/checkout@v3
72- - name : Check formatting
73- run : cargo fmt --all --check
60+ - run : cargo fmt --all --check
0 commit comments