-
Notifications
You must be signed in to change notification settings - Fork 2
115 lines (92 loc) · 2.51 KB
/
github-ci.yml
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: GitHub CI
on:
push:
pull_request:
schedule:
# https://crontab.guru/
# At 12:00 AM, only on Monday
- cron: 0 0 * * 1
workflow_dispatch:
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install requirements
run: |
go install golang.org/x/tools/cmd/goimports@latest
- name: Check format
run: |
goimports -l $(pwd)
lint:
runs-on: ${{ matrix.os }}
needs: [fmt]
strategy:
matrix:
go-version: [stable]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.61
build:
runs-on: ${{ matrix.os }}
needs: [fmt]
strategy:
matrix:
go-version: [stable]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: |
go env -w CGO_ENABLED=0
go build -o bin/ ./...
- name: Test
run: |
go env -w CGO_ENABLED=1
go test -v -timeout 30s -race ./...
# coverage:
# runs-on: ubuntu-latest
# needs: [fmt, lint, build]
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# - name: Setup Go
# uses: actions/setup-go@v5
# with:
# go-version: stable
# - name: Generate code coverage
# run: |
# go env -w CGO_ENABLED=0
# go test -v -coverprofile coverage.out ./...
# go tool cover -html coverage.out -o coverage.html
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# files: ./coverage.out
# flags: unittests
# name: codecov-umbrella
# - name: Archive code coverage results
# uses: actions/upload-artifact@v4
# with:
# name: code-coverage-report
# path: coverage.html