Update nalgebra requirement from 0.32 to 0.33 #120
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
name: build | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
std-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build | |
- name: Test | |
run: cargo test | |
- name: Build and run example | |
run: cd examples && cargo build && cargo run --bin online_tracking | |
nostd-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install ARM target | |
run: rustup target add thumbv7em-none-eabihf | |
- name: Build | |
run: cargo build --no-default-features --target thumbv7em-none-eabihf |