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.
rust.yml
1 parent 9346c6a commit 4f6878eCopy full SHA for 4f6878e
.github/workflows/rust.yml
@@ -12,7 +12,20 @@ jobs:
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v6
15
+ - name: Check features
16
+ run: |
17
+ cargo check --no-default-features
18
+ cargo check --no-default-features --features wallet
19
- name: Build
20
run: cargo build
21
- name: Test
- run: cargo test
22
+ run: cargo test --no-fail-fast
23
+
24
+ lint:
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - uses: actions/checkout@v6
28
+ - name: Rustfmt
29
+ run: cargo fmt --all --check
30
+ - name: Lint
31
+ run: cargo clippy --all-targets --all-features -- -D warnings
0 commit comments