-
Notifications
You must be signed in to change notification settings - Fork 16
109 lines (87 loc) · 2 KB
/
Copy pathtest.yml
File metadata and controls
109 lines (87 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: Test
on:
push:
branches: [ main ]
pull_request:
env:
CGO_ENABLED: 0
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.25]
os: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Install dependencies
run: |
go mod download
go mod verify
- name: Run go vet
run: go vet ./...
- name: Run go fmt check
run: |
if [ "$(go fmt ./... | wc -l)" -gt 0 ]; then
echo "The following files are not formatted:"
go fmt ./...
exit 1
fi
- name: Run tests
run: make test
test-e2e:
name: Test E2E
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.25]
os: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Install dependencies
run: |
go mod download
go mod verify
- name: Run go vet
run: go vet ./...
- name: Run go fmt check
run: |
if [ "$(go fmt ./... | wc -l)" -gt 0 ]; then
echo "The following files are not formatted:"
go fmt ./...
exit 1
fi
- name: Run tests
run: make test-e2e
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4
with:
args: --timeout=10m