-
Notifications
You must be signed in to change notification settings - Fork 28
56 lines (44 loc) · 1.13 KB
/
main.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
name: Main
on:
push:
branches: ['*']
tags: ['v*']
pull_request:
branches: ['*']
env:
GO_TEST_COVERAGE_FILE_NAME: coverage.out
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.19.x', '1.20.x']
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v3
- name: Load cached dependencies
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Download dependencies
run: make install-deps install-deps-dev
- name: Lint
run: make lint
- name: Vet
run: make vet
- name: Test
run: make test-with-coverage-profile
- name: Send code coverage to coveralls
if: ${{ matrix.go == '1.20.x' }}
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
go install github.com/mattn/goveralls@latest
goveralls -coverprofile="$GO_TEST_COVERAGE_FILE_NAME" -service=github