-
Notifications
You must be signed in to change notification settings - Fork 2
64 lines (53 loc) · 1.41 KB
/
ci.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: CI
on:
pull_request:
branches: [ main ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -o bin/aos ./cmd/aos
- name: Test
run: |
go test -v -race ./... -coverprofile cover.out
- name: Coverage
run: go tool cover -func cover.out
# generate:
# needs: ci
# permissions:
# contents: write
# runs-on: ubuntu-latest
# strategy:
# matrix:
# go-version: [1.20.x]
# os: [ubuntu-latest]
# steps:
# - uses: actions/checkout@v3
# with:
# repository: ${{ github.event.pull_request.head.repo.full_name }}
# ref: ${{ github.event.pull_request.head.ref }}
# - name: Set up Go ${{ matrix.go-version }}
# uses: actions/setup-go@v3
# with:
# go-version: ${{ matrix.go-version }}
# - uses: actions/setup-node@v3
# with:
# node-version: 18
# - name: Setup tools
# run: |
# go install github.com/discord-gophers/goapi-gen@latest
# go install go.uber.org/mock/mockgen@latest
# - name: Generate
# run: |
# go generate ./...
# - uses: EndBug/add-and-commit@v9