We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a122942 commit 5b8a649Copy full SHA for 5b8a649
.github/workflows/ci.yml
@@ -8,6 +8,18 @@ env:
8
CARGO_TERM_COLOR: always
9
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
23
build_and_test:
24
name: Sugondat - latest
25
runs-on: self-hosted
sugondat-serde-util/src/lib.rs
@@ -338,7 +338,8 @@ pub mod bytes32_hex {
338
],
339
})
340
.unwrap(),
341
- r#"{"bytes":"0x1234567812345678123456781234567812345678123456781234567812345678"}"#.to_string()
+ r#"{"bytes":"0x1234567812345678123456781234567812345678123456781234567812345678"}"#
342
+ .to_string()
343
);
344
}
345
0 commit comments