Skip to content

Merge pull request #71 from DJMcNab/env_logger_0_11 #61

Merge pull request #71 from DJMcNab/env_logger_0_11

Merge pull request #71 from DJMcNab/env_logger_0_11 #61

Workflow file for this run

name: Continuous integration
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
toolchain:
- stable
- beta
- nightly
target:
- arm-linux-androideabi
- armv7-linux-androideabi
- aarch64-linux-android
- i686-linux-android
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
target: ${{ matrix.target }}
- run: cargo build --target=${{ matrix.target }}
- run: cargo doc --target=${{ matrix.target }}
# Temporary test non-target only.
# TODO: Test in emulator or something.
- run: cargo test