nrf-modem 0.10.2

Async modem api for the nRF91xx
Documentation
name: CI

on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: dtolnay/rust-toolchain@master
        with:
          toolchain: stable
          components: clippy, rustfmt, llvm-tools
          targets: thumbv8m.main-none-eabihf
      - uses: carlosperate/arm-none-eabi-gcc-action@v1

      - run: cargo fmt -- --check
      - run: cargo clippy --features nrf9160 --target thumbv8m.main-none-eabihf -- -D warnings
      - run: cargo clippy --features nrf9160,dns-async,defmt,modem-trace,modem-log,embassy-net,embedded-nal-async --target thumbv8m.main-none-eabihf -- -D warnings
      - run: cargo clippy --features nrf9151,os-irq --target thumbv8m.main-none-eabihf -- -D warnings