Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
os:
- ubuntu-latest
- macos-latest
- windows-latest
# - windows-latest
steps:
- uses: actions/checkout@v4
- name: Test
Expand All @@ -54,6 +54,17 @@ jobs:
RUST_LOG: DEBUG
RUST_BACKTRACE: full

# windows failed to run the test with embassy-sleep enabled.
unit-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Test
run: cargo test --workspace
env:
RUST_LOG: DEBUG
RUST_BACKTRACE: full

nightly-unit:
runs-on: ubuntu-latest
steps:
Expand Down