Many improvements, including the ability to compare two branches by name #194
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: CI – Windows | |
| on: | |
| pull_request: | |
| branches: [main, develop] | |
| workflow_dispatch: {} | |
| jobs: | |
| build_and_test: | |
| runs-on: windows-latest | |
| timeout-minutes: 20 | |
| steps: | |
| # Checkout the repository | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| # Install Bazelisk (recommended Bazel launcher) | |
| - name: Setup Bazelisk | |
| uses: bazel-contrib/setup-bazel@0.19.0 | |
| with: | |
| bazelisk-version: "1.29.0" | |
| # Build all targets | |
| - name: Build all targets | |
| run: bazel build --verbose_failures //... | |
| # Run all tests (including Python) | |
| - name: Run all tests | |
| run: bazel test --verbose_failures //... | |
| # Upload test logs | |
| - name: Upload test logs - Windows | |
| if: always() | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: bazel-test-logs-windows | |
| path: bazel-testlogs/ | |
| if-no-files-found: ignore | |
| retention-days: 30 |