Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ permissions:
contents: read

env:
# Keep the host Go toolchain aligned with the CI mock-server harness.
GO_VERSION: "1.25.0"
PYTHON_VERSION: "3.11"

concurrency:
Expand All @@ -35,6 +37,11 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ env.GO_VERSION }}

- name: Run core Bazel tests
shell: bash
run: ./bazelw test //tools/...
Expand Down Expand Up @@ -322,6 +329,11 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ env.GO_VERSION }}

- name: Ensure jq is available (Windows)
if: runner.os == 'Windows'
shell: pwsh
Expand Down
Loading