Prepare for 0.4.3 release #609
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: Bazel Tests | |
| on: [push] | |
| jobs: | |
| bazel-test: | |
| name: Bazel tests | |
| runs-on: macos-26 | |
| env: | |
| DEVELOPER_DIR: /Applications/Xcode_26.1.app/Contents/Developer | |
| steps: | |
| - uses: bazel-contrib/[email protected] | |
| with: | |
| bazelisk-cache: true | |
| disk-cache: ${{ github.workflow }} | |
| repository-cache: true | |
| - name: Checkout source | |
| uses: actions/checkout@v5 | |
| - name: Build everything | |
| run: bazel build //:TOMLDecoder //:compliance | |
| - name: Run tests | |
| run: bazel test //... --test_output=all |