Skip to content

Commit 0c445f8

Browse files
akoclaude
andcommitted
Update CI workflow to use Makefile targets for build, test, and lint
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 05e0701 commit 0c445f8

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

.github/workflows/push-test.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# .github/workflows/test.yml
2-
name: Test & Lint
1+
name: Build, Test & Lint
32

43
on: [push, pull_request]
54

65
jobs:
7-
test:
6+
build-and-test:
87
runs-on: ${{ matrix.os }}
98
strategy:
109
matrix:
@@ -15,9 +14,9 @@ jobs:
1514
- uses: actions/setup-go@v4
1615
with:
1716
go-version: ${{ matrix.go-version }}
18-
- run: go test -v -race -coverprofile=coverage.out ./...
19-
- run: go vet ./...
20-
- uses: golangci/golangci-lint-action@v3
21-
with:
22-
version: latest
23-
args: --timeout=5m
17+
- name: Build
18+
run: make build
19+
- name: Test
20+
run: make test
21+
- name: Lint Go
22+
run: make lint-go

0 commit comments

Comments
 (0)