Compare commits
2 commits
1308e68858
...
73233d2923
Author | SHA1 | Date | |
---|---|---|---|
73233d2923 | |||
3ba4b3d877 |
2 changed files with 22 additions and 1 deletions
21
.forgejo/workflows/pico_master.yaml
Normal file
21
.forgejo/workflows/pico_master.yaml
Normal file
|
@ -0,0 +1,21 @@
|
|||
name: Check Build
|
||||
run_name: Check Build
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
Test build:
|
||||
steps:
|
||||
- uses: https://github.com/actions/checkout@main
|
||||
|
||||
- uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||
|
||||
- name: Build - debug
|
||||
run: |
|
||||
cargo build
|
||||
|
||||
- name: Build - release
|
||||
run: |
|
||||
cargo build --release
|
||||
|
|
@ -27,7 +27,7 @@ fixed-macro = "1.2"
|
|||
serde = { version = "1.0.203", default-features = false, features = ["derive"] }
|
||||
|
||||
[dev-dependencies]
|
||||
embassy-executor = { version = "0.5.0", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "integrated-timers"] }
|
||||
embassy-executor = { version = "0.6.0", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "integrated-timers"] }
|
||||
embassy-futures = { version = "0.1.1" }
|
||||
embassy-usb-logger = { version = "0.1.0" }
|
||||
log = "0.4"
|
||||
|
|
Loading…
Reference in a new issue