-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (38 loc) · 1.06 KB
/
Copy pathci.yml
File metadata and controls
50 lines (38 loc) · 1.06 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:
test:
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: Cross-compile (Windows)
run: GOOS=windows GOARCH=amd64 go build ./...
- name: Cross-compile (macOS)
run: GOOS=darwin GOARCH=amd64 go build ./...
- name: Test
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic -count=1 ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
integration:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build binary
run: go build -o converge ./cmd/converge
- name: Integration tests
run: sudo bash .github/ci/scripts/test-linux.sh