Update to pod2 repo with prefixless wildcards #356
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: Rust Tests | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [ready_for_review, opened, synchronize, reopened] | |
| push: | |
| branches: [main] | |
| jobs: | |
| test: | |
| if: github.event.pull_request.draft == false | |
| name: Rust tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Tauri dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf | |
| - uses: actions/checkout@v4 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| - name: Run tests | |
| run: cargo test --release |