embedded-hal 1.0.0-alpha.8

A Hardware Abstraction Layer (HAL) for embedded systems
Documentation
on:
  push:
    branches: [ staging, trying, master ]
  pull_request:

name: CI Async

env:
  RUSTFLAGS: '--deny warnings'

jobs:
  ci-linux-async:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        rust: [nightly]
        TARGET: [x86_64-unknown-linux-gnu, thumbv6m-none-eabi, thumbv7m-none-eabi]

    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: ${{ matrix.rust }}
          target: ${{ matrix.TARGET }}
          override: true
      - run: cargo check --target=${{ matrix.TARGET }}
        working-directory: embedded-hal-async

      - run: cargo test --target=${{ matrix.TARGET }}
        if: contains(matrix.TARGET, 'linux')
        working-directory: embedded-hal-async