name: Rust on: push: branches: [ master ] pull_request: branches: [ master ] env: CARGO_TERM_COLOR: always jobs: build: runs-on: ubuntu-latest steps: - name : Install ARM compiler run: sudo apt-get install gcc-arm-linux-gnueabihf -y - name: Set ARM compiler as environment variable run: export CC=arm-linux-gnueabihf-gcc - uses: actions-rs/toolchain@v1 with: toolchain: stable target: armv7-unknown-linux-gnueabihf override: true - uses: actions/checkout@v2 - name: Build run: cargo build --verbose - name: Run tests run: cargo test --verbose