Compare commits

...

2 commits

Author SHA1 Message Date
hodasemi 5423bddf3d Update Rust crate embassy-usb-logger to 0.2.0
Some checks are pending
Check Build / Test build (push) Waiting to run
2024-08-06 06:47:24 +02:00
hodasemi 3ba4b3d877 Add action file
Some checks failed
Check Build / Test build (push) Failing after 14m5s
2024-08-06 06:43:21 +02:00
2 changed files with 22 additions and 1 deletions

View 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

View file

@ -29,7 +29,7 @@ serde = { version = "1.0.203", default-features = false, features = ["derive"] }
[dev-dependencies] [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.5.0", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "executor-interrupt", "integrated-timers"] }
embassy-futures = { version = "0.1.1" } embassy-futures = { version = "0.1.1" }
embassy-usb-logger = { version = "0.1.0" } embassy-usb-logger = { version = "0.2.0" }
log = "0.4" log = "0.4"
[[example]] [[example]]