-
-
Notifications
You must be signed in to change notification settings - Fork 2
62 lines (57 loc) · 1.53 KB
/
Copy pathcheck.yml
File metadata and controls
62 lines (57 loc) · 1.53 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
name: check
permissions: read-all
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v7
- name: setup go build environment
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- name: linter
run: make mod deps linter GOPATH=$(go env GOPATH)
test:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v7
- name: setup go build environment
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- name: unit tests
run: make mod deps confcheck test GOPATH=$(go env GOPATH)
- name: coverage report
uses: coverallsapp/github-action@v2
continue-on-error: true
with:
file: target/report/coverage.out
format: golang
integration-test:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v7
- name: setup go build environment
uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: integration tests
run: make mod deps generate build docker dockertest GOPATH=$(go env GOPATH)