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 22899cf commit b6f95d9Copy full SHA for b6f95d9
.github/workflows/format.yml
@@ -0,0 +1,14 @@
1
+on: [push, pull_request]
2
+name: Formatting
3
+jobs:
4
+ check:
5
+ runs-on: ubuntu-latest
6
+ env:
7
+ CARGO_UNSTABLE_SPARSE_REGISTRY: true
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: dtolnay/rust-toolchain@nightly
11
+ with:
12
+ components: rustfmt
13
+ - name: Check Rust formatting
14
+ run: cargo fmt --verbose --manifest-path src/android-simd/Cargo.toml -- --check
0 commit comments