-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.21 KB
/
ci.yml
File metadata and controls
50 lines (41 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout iterate
uses: actions/checkout@v4
with:
path: iterate
# The go.mod has: replace github.com/GrayCodeAI/iteragent => ../iteragent
# So we also check out iteragent as a sibling directory.
- name: Checkout iteragent
uses: actions/checkout@v4
with:
repository: GrayCodeAI/iteragent
path: iteragent
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
cache-dependency-path: iterate/go.sum
- name: Build
working-directory: iterate
run: go build ./...
- name: Test
working-directory: iterate
run: go test -race -coverprofile=coverage.out -v ./...
- name: Coverage summary
working-directory: iterate
run: go tool cover -func=coverage.out | tail -1
- name: Vet
working-directory: iterate
run: go vet ./...
- name: Format check
working-directory: iterate
run: test -z "$(gofmt -l .)" || (echo "Files need gofmt:" && gofmt -l . && exit 1)