Add support for matching inf_provider and add broad match for any tablet with wibusb or libwdi on device #48
Workflow file for this run
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: Build and Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup dependencies | |
| run: | | |
| rustup update stable | |
| rustup default stable | |
| - name: Build | |
| run: | | |
| powershell ./build.ps1 | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: tabletdrivercleanup | |
| path: ./build | |
| if-no-files-found: error | |
| test-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup dependencies | |
| run: | | |
| rustup update stable | |
| rustup default stable | |
| - name: Run tests | |
| run: cargo test --verbose |