This repository was archived by the owner on Sep 11, 2025. It is now read-only.
chore(deps): Update go minor and patch #315
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: 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"' || '' }} |