Update changelog for 0.7.5 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
name: ARM v7 | |
jobs: | |
check: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Update Rust | |
run: rustup update | |
- name: Install cargo cross | |
run: cargo install cross | |
- name: Cross-compile arm | |
run: cross check --target armv7-unknown-linux-gnueabihf --no-default-features | |
- name: Check output | |
run: ls target/ | |