-
Notifications
You must be signed in to change notification settings - Fork 3
37 lines (34 loc) · 1.08 KB
/
examples_rp2040_build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
on: [push, pull_request]
name: Examples RP2040 build
env:
CARGO_TERM_COLOR: always
jobs:
check_format_build:
name: Examples - Check, Format, Build
runs-on: ubuntu-latest
steps:
#Checkout source
- name: Checkout sources
uses: actions/checkout@v4
#toolchain and tools
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: thumbv6m-none-eabi
components: rustfmt, clippy
- name: Install flip-link linker
run: cargo install flip-link
#build and lint
- name: Run cargo check - examples rp2040
working-directory: ./examples/rp2040/
run: cargo check
- name: Run cargo fmt - examples rp2040
working-directory: ./examples/rp2040/
run: cargo fmt --all -- --check
- name: Run cargo clippy - examples rp2040
working-directory: ./examples/rp2040/
run: cargo clippy -- -D warnings
- name: Run cargo build - examples rp2040
working-directory: ./examples/rp2040/
run: cargo build