fix(lib): use constant rfcomm service uuid for a3930 #111
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test windows | |
| on: | |
| push: | |
| paths: &push_paths | |
| - Cargo.lock | |
| - lib/** | |
| - .github/workflows/test-windows.yml | |
| pull_request: | |
| paths: *push_paths | |
| permissions: | |
| contents: read | |
| jobs: | |
| # Only lib is tested on windows since building the gui/cli would take | |
| # a lot longer, and they don't contain any platform specific code | |
| test-rust: | |
| runs-on: windows-2025 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Install just | |
| run: choco install just | |
| - name: Install rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Cache cargo dependencies | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Run lib tests | |
| run: just lib/ test |