Compare commits
2 commits
c276020137
...
74815a78b6
Author | SHA1 | Date | |
---|---|---|---|
74815a78b6 | |||
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
|
||||
|
|
@ -14,7 +14,7 @@ categories = ["embedded", "hardware-support", "no-std"]
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
embassy-rp = { version = "0.1.0", features = ["unstable-pac", "time-driver", "critical-section-impl"] }
|
||||
embassy-rp = { version = "0.2.0", features = ["unstable-pac", "time-driver", "critical-section-impl"] }
|
||||
embassy-time = { version = "0.3.0" }
|
||||
cortex-m-rt = "0.7.3"
|
||||
|
||||
|
|
Loading…
Reference in a new issue