diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7b23e9e..07c57ea 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,5 +18,9 @@ jobs: - uses: actions/checkout@v3 - name: Build run: cargo build --verbose + - name: Build for 32-bit target + run: cargo build --target armv7-linux-androideabi --verbose - name: Run tests run: cargo test --verbose -- --nocapture + - name: Run tests for all features + run: cargo test --all-features --verbose -- --nocapture