Skip to content

Commit

Permalink
ci: test all features
Browse files Browse the repository at this point in the history
  • Loading branch information
Devdutt Shenoi committed Aug 24, 2024
1 parent 03564da commit 1258bda
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Rust

on:
push:
branches: [ main, next ]
branches: [main, next]
pull_request:
branches: [ main, next ]
branches: [main, next]

jobs:
clippy:
name: Clippy on linux x86
name: Test on linux x86
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -17,7 +17,7 @@ jobs:
env:
RUSTFLAGS: "-D warnings"
- name: Run tests
run: cargo test --verbose
run: cargo test --verbose --all-features

clippy-android:
name: Clippy on android aarch64
Expand All @@ -37,4 +37,3 @@ jobs:
RUST_FLAGS: "-D warnings"
ANDROID_NDK_HOME: ${{ steps.ndk.outputs.ndk-path }}
ANDROID_NDK_ROOT: ${{ steps.ndk.outputs.ndk-path }}

0 comments on commit 1258bda

Please sign in to comment.