ci: add windows serial cargo check and test

This commit is contained in:
oopsbagel
2025-04-03 15:56:25 -07:00
committed by Cooper Quintin
parent 55f78cf749
commit b317200307
+15
View File
@@ -18,3 +18,18 @@ jobs:
run: cargo check --verbose
- name: Run tests
run: cargo test --verbose
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