File tree Expand file tree Collapse file tree 2 files changed +5
-13
lines changed Expand file tree Collapse file tree 2 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 1212 platform : [ubuntu-latest, windows-latest, macos-latest]
1313 runs-on : ${{ matrix.platform }}
1414 steps :
15- - uses : actions/checkout@v2
16- - uses : actions-rs/toolchain@v1
17- with :
18- toolchain : stable
19- - uses : actions-rs/cargo@v1
20- with :
21- command : check
22- args : --no-default-features --features=${{ matrix.features }}
23- - uses : actions-rs/cargo@v1
24- with :
25- command : test
26- args : --no-default-features --features=${{ matrix.features }}
15+ - uses : actions/checkout@v5
16+ - uses : dtolnay/rust-toolchain@stable
17+ - run : cargo check --no-default-features --features=${{ matrix.features }}
18+ - run : cargo test --no-default-features --features=${{ matrix.features }}
19+ - run : cargo fmt -- --check
Original file line number Diff line number Diff line change @@ -40,4 +40,3 @@ the last, in which it is cleared.
4040Signed values are first converted to an unsigned representation using zigzag
4141encoding (also described on the page linked above), and then encoded as every
4242other unsigned number.
43-
You can’t perform that action at this time.
0 commit comments