Merge branch 'main' into build-features

This commit is contained in:
Cooper Quintin
2025-04-11 10:38:49 -07:00
committed by GitHub
12 changed files with 118 additions and 59 deletions

View File

@@ -24,3 +24,18 @@ jobs:
run: cargo check --verbose --no-default-features --features=${{ matrix.device.name }}
- name: Run tests
run: cargo test --verbose --no-default-features --features=${{ matrix.device.name }}
windows_serial_check_and_test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: cargo check
shell: bash
run: |
cd serial
cargo check --verbose
- name: cargo test
shell: bash
run: |
cd serial
cargo test --verbose --no-default-features --features=${{ matrix.device.name }}