generated from sv-tools/go-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 5
92 lines (74 loc) · 2.2 KB
/
code.yaml
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
name: Code
on:
push:
tags:
- v*
branches:
- main
pull_request:
schedule:
- cron: "0 0 * * 0"
permissions:
contents: read
concurrency:
group: ${{ format('{0}-{1}', github.workflow, github.head_ref) }}
cancel-in-progress: true
env:
GO: "1.23"
MONGO_USERNAME: "admin"
MONGO_PASSWORD: "adminpass"
jobs:
UnitTests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2 # immutable action
- name: Install Go
uses: actions/setup-go@v5.2.0 # immutable action
with:
go-version: ${{ env.GO }}
- name: Build and Run MongoDB
run: make run-docker
env:
SLEEP: 10
- name: Run Unit Tests
env:
MONGO_URI: "mongodb://${{ env.MONGO_USERNAME }}:${{ env.MONGO_PASSWORD }}@127.0.0.1:27888/?authSource=admin&directConnection=true"
run: go test -race -cover -coverprofile=coverage.out -covermode=atomic
- name: Codecov
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
GolangCI-Lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2 # immutable action
- name: Install Go
uses: actions/setup-go@v5.2.0 # immutable action
with:
go-version: ${{ env.GO }}
- name: Run GolangCi-Lint
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
with:
version: latest
Mocks:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2 # immutable action
- name: Install Go
uses: actions/setup-go@v5.2.0 # immutable action
with:
go-version: ${{ env.GO }}
- name: Generate Mocks
run: make go-install generate-mocks
- name: Checking Git
run: |
DELTA="$(git status --short)"
if [ -n "${DELTA}" ]
then
echo "::error title=Mocks are outdated::Please run 'make generate-mocks' to re-generate the mocks"
git status
exit 1
fi