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 c017d59 commit e17bb4bCopy full SHA for e17bb4b
.github/workflows/main.yml
@@ -54,3 +54,17 @@ jobs:
54
run: CARGO_TARGET_WASM32_WASI_RUNNER=wasmtime cargo test --target wasm32-wasi --no-default-features
55
- name: Test (all features)
56
run: CARGO_TARGET_WASM32_WASI_RUNNER=wasmtime cargo test --target wasm32-wasi --all-features
57
+
58
59
+ lints:
60
+ name: Rustfmt
61
+ runs-on: ubuntu-latest
62
+ steps:
63
+ - name: Checkout repository
64
+ uses: actions/checkout@v2
65
+ - name: Install toolchain
66
+ uses: dtolnay/rust-toolchain@stable
67
+ with:
68
+ components: rustfmt
69
+ - name: Check formatting
70
+ run: cargo fmt --check
0 commit comments