File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 8
8
CARGO_TERM_COLOR : always
9
9
10
10
jobs :
11
+ fmt :
12
+ name : fmt
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Checkout
16
+ uses : actions/checkout@v3
17
+ - name : Install rustfmt from the rust stable toolchain
18
+ uses : dtolnay/rust-toolchain@stable
19
+ with :
20
+ components : rustfmt
21
+ - name : Rustfmt
22
+ run : cargo fmt --all -- --check
11
23
build_and_test :
12
24
name : Sugondat - latest
13
25
runs-on : self-hosted
Original file line number Diff line number Diff line change @@ -338,7 +338,8 @@ pub mod bytes32_hex {
338
338
] ,
339
339
} )
340
340
. unwrap( ) ,
341
- r#"{"bytes":"0x1234567812345678123456781234567812345678123456781234567812345678"}"# . to_string( )
341
+ r#"{"bytes":"0x1234567812345678123456781234567812345678123456781234567812345678"}"#
342
+ . to_string( )
342
343
) ;
343
344
}
344
345
}
You can’t perform that action at this time.
0 commit comments