-
Notifications
You must be signed in to change notification settings - Fork 5
61 lines (51 loc) · 1.25 KB
/
go.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
name: Go
on:
pull_request:
paths:
- go.mod
- '**.go'
- .github/workflows/go.yml
push:
branches:
- main
paths:
- go.mod
- '**.go'
- .github/workflows/go.yml
jobs:
check:
name: Go Checks
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.17'
cache: false
- name: Check out code
uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/[email protected]
with:
version: v1.29
args: --timeout 2m0s
test:
name: Go Tests
runs-on: ubuntu-latest
container:
image: golang
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run tests
run: go test -mod=readonly -v ./... -race -cover -tags=integration -covermode=atomic -coverprofile=coverage.txt
- name: Install gcov2lcov
env:
GO111MODULE: off
run: go get -u github.com/jandelgado/gcov2lcov
- name: Convert coverage.txt to coverage.xml
run: gcov2lcov -infile=coverage.txt -outfile=coverage.lcov
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
file: ./coverage.lcov