-
Notifications
You must be signed in to change notification settings - Fork 0
121 lines (100 loc) · 2.58 KB
/
go-integrations.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
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
116
117
118
119
120
121
---
name: Go Integrations
on:
pull_request:
branches:
- main
permissions:
contents: read
issues: read
actions: read
pull-requests: read
security-events: write
jobs:
testing:
strategy:
matrix:
version:
- "1.19"
- "1.20"
platform:
- ubuntu-latest
fail-fast: false
name: Go Tests
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout the Repository
uses: actions/checkout@v4
- name: Set up Go v${{ matrix.version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.version }}
cache-dependency-path: go.sum
- name: Verify the Go modules
run: go mod verify
- name: Download the Go modules
run: go mod download
- name: Run standard tests
run: go test -v ./...
- name: Run race tests
run: go test -v -race ./...
coverage:
name: Go Coverage
runs-on: ubuntu-latest
needs:
- testing
steps:
- name: Checkout the Repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Verify the Go modules
run: go mod verify
- name: Download the Go modules
run: go mod download
- name: Run coverage tests
run: |-
go test -v ./... \
-covermode=count \
-coverprofile=coverage.out
- name: Show coverage report summary
run: |-
go tool cover \
-func=coverage.out
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: pip
- name: Install the Python packages
run: pip install -r requirements.txt
- name: Upload coverage reports to Codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
codecovcli create-commit
codecovcli create-report
codecovcli do-upload \
--file coverage.out \
--name go-cover \
--flag unit-tests
linting:
name: golangci Linting
runs-on: ubuntu-latest
needs:
- testing
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest