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.
2 parents 2bd08ab + 23aec9b commit 1fa057bCopy full SHA for 1fa057b
circle.yml
@@ -682,12 +682,20 @@ jobs:
682
steps:
683
- rust_restore_cargo_cache
684
- rust_install_system_dependencies
685
+ - rust_install_nightly
686
- checkout
687
- run:
688
name: Check formatting
689
command: |
690
rustfmt --version
691
cargo fmt --all -- --check
692
+ - run:
693
+ name: Check formatting (nightly)
694
+ command: |
695
+ cd bindings/rust
696
+ echo "format_code_in_doc_comments = true" > rustfmt.toml
697
+ cargo +nightly fmt --all -- --check
698
+ rm rustfmt.toml
699
- install_wabt
700
701
name: Check wat2wasm4tests
0 commit comments