We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 166f90c commit 6c0cefdCopy full SHA for 6c0cefd
.github/workflows/cont_integration.yml
@@ -49,3 +49,18 @@ jobs:
49
run: curl https://bitcoincore.org/bin/bitcoin-core-$BITCOIN_VER/bitcoin-$BITCOIN_VER-x86_64-linux-gnu.tar.gz | tar -xvz bitcoin-$BITCOIN_VER/bin/bitcoind
50
- name: Test electrsd
51
run: RUST_LOG=electrs=debug cargo test --verbose ${{ matrix.features }}
52
+
53
+ cosmetics:
54
+ runs-on: ubuntu-20.04
55
+ steps:
56
+ - uses: actions/checkout@v2
57
+ - uses: actions-rs/toolchain@v1
58
+ with:
59
+ toolchain: stable
60
+ override: true
61
+ profile: minimal
62
+ components: rustfmt, clippy
63
+ - name: fmt
64
+ run: cargo fmt -- --check
65
+ - name: clippy
66
+ run: cargo clippy -- -D warnings
0 commit comments