Merge branch 'master' into equivalent #62
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: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
TARGET: thumbv6m-none-eabi | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: rustup target add $TARGET | |
- name: Build | |
run: cargo build --verbose | |
- name: Build with serde | |
run: cargo build --verbose --features serde | |
- name: Build for no-std | |
run: cargo build -v -p test-nostd --target=$TARGET |