Add Orbic support for the Rust installer and some common improvements

This commit is contained in:
Sashanoraa
2025-04-26 21:05:48 -04:00
committed by Cooper Quintin
parent 1f7b7f0f1a
commit 30d62b8d7b
5 changed files with 333 additions and 41 deletions

View File

@@ -37,3 +37,17 @@ jobs:
- name: Run clippy
run: cargo clippy --verbose --no-default-features --features=${{ matrix.device.name }}
windows_installer_check_and_test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: cargo check
shell: bash
run: |
cd installer
cargo check --verbose
- name: cargo test
shell: bash
run: |
cd installer
cargo test --verbose --no-default-features --features=${{ matrix.device.name }}