2020-10-31 23:03:46 +01:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-12-01 17:52:06 +01:00
|
|
|
branches: [master]
|
2020-10-31 23:03:46 +01:00
|
|
|
pull_request:
|
2020-12-01 17:52:06 +01:00
|
|
|
branches: [master]
|
2020-10-31 23:03:46 +01:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2020-12-01 17:52:06 +01:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
override: true
|
|
|
|
- name: Build
|
|
|
|
run: ./test-build.sh
|