-
Notifications
You must be signed in to change notification settings - Fork 289
75 lines (73 loc) · 1.89 KB
/
ci.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: CI
on:
push:
pull_request:
env:
HELM_VERSION: v3.9.0
GOLANGCI_LINT_VERSION: v1.53.3
GOLANGCI_LINT_TIMEOUT: 10m
jobs:
lint-go:
if: ${{ !contains(github.event.commits[0].message, '[skip-ci]') }}
runs-on: ubuntu-latest
name: Lint Go code
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
cache: true
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
args: --timeout=${{ env.GOLANGCI_LINT_TIMEOUT }}
- name: Verify Go modules
run: go mod verify
if: always()
- name: Run Go import formatting
run: make go-import-fmt
if: always()
- name: Detect git changes
if: always()
run: |
if [[ $(git diff --stat) != '' ]]; then
echo -e '❌ \033[0;31m. Run 'make lint-fix'.\033[0m'
git diff --color
exit 1
else
echo '✔ No issues detected. Have a nice day :-)'
fi
test:
if: ${{ !contains(github.event.commits[0].message, '[skip-ci]') }}
runs-on: ubuntu-latest
name: Run tests
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
cache: true
- name: Run tests
run: make test
build:
if: ${{ !contains(github.event.commits[0].message, '[skip-ci]') }}
runs-on: ubuntu-latest
needs:
- lint-go
- test
name: Build app
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
cache: true
- name: Build
run: make