File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-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 @@ -111,7 +111,6 @@ jobs:
111
111
run : cargo check --target wasm32-unknown-unknown --no-default-features --features miniscript/no-std,bdk_chain/hashbrown
112
112
113
113
fmt :
114
- needs : prepare
115
114
name : Rust fmt
116
115
runs-on : ubuntu-latest
117
116
steps :
@@ -122,12 +121,12 @@ jobs:
122
121
- name : Install Rust toolchain
123
122
uses : actions-rs/toolchain@v1
124
123
with :
125
- toolchain : ${{ needs.prepare.outputs.rust_version }}
124
+ toolchain : nightly
126
125
override : true
127
126
profile : minimal
128
127
components : rustfmt
129
128
- name : Check fmt
130
- run : cargo fmt --all -- --config format_code_in_doc_comments=true -- check
129
+ run : cargo fmt --all --check
131
130
132
131
clippy_check :
133
132
needs : prepare
You can’t perform that action at this time.
0 commit comments