This commit is contained in:
Will Greenberg
2025-04-23 11:08:54 -07:00
parent 63b07b83f5
commit f28022920a

View File

@@ -21,9 +21,19 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Check
run: cargo check --verbose --no-default-features --features=${{ matrix.device.name }}
run: |
pushd bin/web
npm install
npm run build
popd
cargo check --verbose --no-default-features --features=${{ matrix.device.name }}
- name: Run tests
run: cargo test --verbose --no-default-features --features=${{ matrix.device.name }}
run: |
pushd bin/web
npm install
npm run build
popd
cargo test --verbose --no-default-features --features=${{ matrix.device.name }}
windows_serial_check_and_test:
runs-on: windows-latest
@@ -38,4 +48,4 @@ jobs:
shell: bash
run: |
cd serial
cargo test --verbose --no-default-features --features=${{ matrix.device.name }}
cargo test --verbose --no-default-features --features=${{ matrix.device.name }}