Skip to content

Commit 921ea27

Browse files
akoclaude
andcommitted
Simplify CI workflow to single Ubuntu runner
Pure Go project with no CGO — cross-compilation handles all platforms, no need to test on macOS and Windows runners. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e05c1b4 commit 921ea27

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/push-test.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,12 @@ on: [push, pull_request]
44

55
jobs:
66
build-and-test:
7-
runs-on: ${{ matrix.os }}
8-
strategy:
9-
matrix:
10-
os: [ubuntu-latest, macos-latest, windows-latest]
11-
go-version: ['1.26']
7+
runs-on: ubuntu-latest
128
steps:
139
- uses: actions/checkout@v4
1410
- uses: actions/setup-go@v4
1511
with:
16-
go-version: ${{ matrix.go-version }}
12+
go-version: '1.26'
1713
- name: Build
1814
run: make build
1915
- name: Test

0 commit comments

Comments
 (0)