From 12462622187232d5c04e8bcd046617a685a38195 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 2 Apr 2026 07:28:32 +0000 Subject: [PATCH] Combine CI jobs into a single "test" job https://claude.ai/code/session_015F9BYQoCy2P2zYZBuVeXHH --- .github/workflows/ci.yml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abc7213..77bc376 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ permissions: contents: read jobs: - build-and-test: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -22,17 +22,8 @@ jobs: - name: Build run: go build ./... - - name: Test - run: go test ./... -timeout 60s -race - - vet: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-go@v5 - with: - go-version-file: go.mod - - name: Vet run: go vet ./... + + - name: Test + run: go test ./... -timeout 60s -race