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.
1 parent 72cc812 commit ddcc302Copy full SHA for ddcc302
.github/workflows/run-tests.yml
@@ -14,10 +14,11 @@ jobs:
14
- name: Checkout
15
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16
- name: Format
17
- run: if [ "$(cargo fmt --check | wc -l)" -gt 0 ]; then exit 1; fi
+ run: |
18
+ cargo fmt --check
19
- name: Build
20
run: |
21
cargo build --profile release
22
- name: Run all tests
23
- cargo test --tests --all-features --profile release
24
+ cargo test --all-features --profile release
0 commit comments