File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ of the PR were done in a specific way -->
20
20
21
21
* [ ] I've signed all my commits
22
22
* [ ] I followed the [ contribution guidelines] ( https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md )
23
- * [ ] I ran ` cargo fmt ` and ` cargo clippy ` before committing
23
+ * [ ] I ran ` cargo +nightly fmt ` and ` cargo clippy ` before committing
24
24
25
25
#### New Features:
26
26
Original file line number Diff line number Diff line change @@ -124,7 +124,6 @@ jobs:
124
124
run : cargo check --target wasm32-unknown-unknown --no-default-features --features bdk_core/hashbrown,async
125
125
126
126
fmt :
127
- needs : prepare
128
127
name : Rust fmt
129
128
runs-on : ubuntu-latest
130
129
steps :
@@ -135,12 +134,12 @@ jobs:
135
134
- name : Install Rust toolchain
136
135
uses : actions-rs/toolchain@v1
137
136
with :
138
- toolchain : ${{ needs.prepare.outputs.rust_version }}
137
+ toolchain : nightly
139
138
override : true
140
139
profile : minimal
141
140
components : rustfmt
142
141
- name : Check fmt
143
- run : cargo fmt --all -- --config format_code_in_doc_comments=true -- check
142
+ run : cargo fmt --all --check
144
143
145
144
clippy_check :
146
145
needs : prepare
Original file line number Diff line number Diff line change
1
+ comment_width = 100
2
+ format_code_in_doc_comments = true
3
+ wrap_comments = true
You can’t perform that action at this time.
0 commit comments