Skip to content

test: error message contents #1156

test: error message contents

test: error message contents #1156

Workflow file for this run

name: Rust
on:
push:
branches: [ main, next ]
pull_request:
branches: [ main, next ]
jobs:
clippy:
name: Clippy on linux x86
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Clippy
run: cargo clippy --verbose
env:
RUSTFLAGS: "-D warnings"
- name: Run tests
run: cargo test --verbose
clippy-android:
name: Clippy on android aarch64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo apt install unzip
- run: cargo install [email protected]
- name: Setup Android NDK
id: ndk
uses: nttld/[email protected]
with:
ndk-version: r25b
- run: rustup target add aarch64-linux-android
- run: cargo ndk --target aarch64-linux-android --platform 23 clippy
env:
RUST_FLAGS: "-D warnings"
ANDROID_NDK_HOME: ${{ steps.ndk.outputs.ndk-path }}
ANDROID_NDK_ROOT: ${{ steps.ndk.outputs.ndk-path }}