esp-at-driver 0.1.0

Rust driver that runs on the main processor and communicates to an ESP32 coprocessor running the AT firmware.
Documentation
name: Rust

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
    - name: Build
      run: |
        rustup target add thumbv7em-none-eabihf
        cargo test
        cargo build --release
        cargo build --release --examples