Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

chore(deps): Update go minor and patch #315

chore(deps): Update go minor and patch

chore(deps): Update go minor and patch #315

name: Build Runtime
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- .github/workflows/ci-runtime-build.yml
- runtime/**/*.go
- runtime/go.mod
- runtime/go.sum
permissions:
contents: read
jobs:
build:
name: Build ${{ matrix.os }}
runs-on:
"${{ matrix.os == 'linux' && 'ubuntu-latest' || matrix.os == 'macos' && 'macos-15' ||
'windows-latest' }}"
strategy:
fail-fast: false
matrix:
os: [linux, macos, windows]
steps:
- uses: actions/checkout@v5
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.25.0
cache-dependency-path: runtime/go.sum
- name: Build Runtime
working-directory: runtime
run: go build ${{ matrix.os == 'windows' && '-ldflags "-checklinkname=0"' || '' }}