Skip to content

Move the old ieee802154 crate into the project. #2

Move the old ieee802154 crate into the project.

Move the old ieee802154 crate into the project. #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
# Run on any PR
pull_request:
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo fmt --all -- --check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy -- -D warnings