-
Notifications
You must be signed in to change notification settings - Fork 1
93 lines (90 loc) · 2.38 KB
/
backend-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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Backend CI Pipeline
on:
push:
branches:
- main
pull_request:
defaults:
run:
working-directory: backend
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
go_version_file: backend/go.mod
workdir: backend
level: warning
fail_on_error: true # deprecated
filter_mode: nofilter
golangci_lint_flags: --timeout=10m
generate:
name: Generate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23
cache: false
- uses: actions/cache/restore@v4
id: go-cache
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: go-${{ hashFiles('backend/go.sum') }}
restore-keys: |
go-
- name: Go Generate
run: go generate -x ./...
- name: Check Diff
run: git diff --exit-code
- uses: actions/cache/save@v4
if: steps.go-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/main'
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ steps.go-cache.outputs.cache-primary-key }}
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23
cache: false
- uses: actions/cache/restore@v4
id: go-cache
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: go-${{ hashFiles('backend/go.sum') }}
restore-keys: |
go-
- name: Go Modules
if: steps.go-cache.outputs.cache-hit != 'true'
run: go mod download -x
- name: Run Test
run: go test -race -shuffle on -parallel 8 -v ./...
- uses: actions/cache/save@v4
if: steps.go-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/main'
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ steps.go-cache.outputs.cache-primary-key }}