-
Notifications
You must be signed in to change notification settings - Fork 3
65 lines (54 loc) · 1.43 KB
/
main.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
# Test & Build
name: Test & Build
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
TestingWithGoversionsMatrix:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
go:
- "1.19"
- "1.20"
- "1.21"
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- uses: actions/cache@v4
if: ${{ !env.ACT }}
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.golang }}-
- run: make build
- run: make tests
- name: Install goveralls
env: { GO111MODULE: "off" }
if: matrix.go == '1.21'
run: go get github.com/mattn/goveralls
- name: Coverage - Sending Report to Coveral
if: matrix.go == '1.21'
env:
COVERALLS_TOKEN: ${{ secrets.github_token }}
run: goveralls -coverprofile=coverage.cov -service=github
GolangCILinter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: lint
uses: golangci/[email protected]
with:
version: latest
skip-build-cache: true
skip-pkg-cache: true
args: -D deadcode --skip-dirs "^(cmd|testdata)"