mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2025-02-04 15:36:35 +11:00
778a87dfaa
I forgot you have to add that event explicitly.
15 lines
379 B
YAML
15 lines
379 B
YAML
on: [push, pull_request]
|
|
name: CI Checks
|
|
jobs:
|
|
check:
|
|
name: Check and Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
target: thumbv6m-none-eabi
|
|
- run: "cargo check"
|
|
- run: "cargo fmt -- --check"
|
|
- run: "cargo clippy -- -Dwarnings"
|