Skip to content

Update README.md

Update README.md #1

Workflow file for this run

name: ci
on:
push:
branches: [master]
pull_request:
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
env:
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v1
with:
submodules: true
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.69.0"
default: true
- run: cargo test
- name: run cross build for Andriod (on Linux)
run: |
cargo install cross
cross build --target aarch64-linux-android
if: matrix.os == 'ubuntu-latest'
- name: run cross build for iOS (on macOS)
run: |
cargo install cross
cross build --target aarch64-apple-ios
if: matrix.os == 'macos-latest'