Skip to content

Commit

Permalink
Update rust.yml (#15)
Browse files Browse the repository at this point in the history
* chore: add android targets & test for all features in workflows
  • Loading branch information
mindeng authored Oct 7, 2024
1 parent 849710f commit fbe9f01
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,11 @@ jobs:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Add Android targets
run: rustup target add armv7-linux-androideabi
- 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

0 comments on commit fbe9f01

Please sign in to comment.