-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (48 loc) · 1.11 KB
/
general.yml
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
---
name: general
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout source
id: source
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Setup golang
id: golang
uses: actions/setup-go@v4
with:
go-version: ^1.21.0
- name: Run generate
id: generate
run: make generate
- name: Run vet
id: vet
run: make vet
- name: Run staticcheck
id: staticcheck
run: make staticcheck
- name: Run lint
id: lint
run: make lint
- name: Run build
id: build
run: make build
- name: Run test
id: test
run: make test
- name: Coverage report
id: codacy
if: github.ref == 'refs/heads/master'
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage.out
force-coverage-parser: go
...