-
Notifications
You must be signed in to change notification settings - Fork 87
86 lines (74 loc) · 2 KB
/
test.yml
File metadata and controls
86 lines (74 loc) · 2 KB
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
name: test
on:
push:
branches:
- 'master'
pull_request:
branches:
- '*'
jobs:
lint:
env:
CGO_ENABLED: 0
GO111MODULE: on
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15.x
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: cache-go-${{ runner.os }}-1.15.x-${{ github.run_number }}
restore-keys: |
cache-go-${{ runner.os}}-1.15.x-
- name: Build
run: make build-all
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.45
skip-pkg-cache: true
skip-build-cache: true
- name: Refresh GoReport
run: curl -XPOST --data 'repo=github.com/darthPestilane/easytcp' 'https://goreportcard.com/checks'
test:
needs: lint
env:
GO111MODULE: on
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go-version: [ 1.16.x, 1.17.x, 1.18.x ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Go ${{ matrix.go-version}}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version}}
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
~/go/pkg/mod
key: cache-go-${{ runner.os }}-${{ matrix.go-version }}-${{ github.run_number }}
restore-keys: |
cache-go-${{ runner.os }}-${{ matrix.go-version }}-
- name: Test
run: make test-v
- name: Upload coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: .testCoverage.txt