Skip to content

chore(*): update to embedded-hal-alpha.10 #181

chore(*): update to embedded-hal-alpha.10

chore(*): update to embedded-hal-alpha.10 #181

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: thumbv7m-none-eabi
override: true
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --all --features "defmt-impl,lara-r6" --target thumbv7m-none-eabi
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --lib --features "log,lara-r6"