-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (51 loc) · 1.08 KB
/
test.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
name: "Test"
on:
push:
branches:
- master
- main
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
types: [ opened, synchronize ]
branches:
- master
- main
paths-ignore:
- 'docs/**'
- '*.md'
workflow_dispatch:
jobs:
# Generate mocks
generate-mocks:
name: "Generate mocks"
runs-on: ubuntu-latest
container: vektra/mockery:v2.38.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate mocks
run: |
mockery --all
- name: Commit mocks
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[Gen] Generated mocks"
# Run unit tests
tests:
name: "Run unit tests"
needs:
- generate-mocks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.21.1
- name: Install dependencies and run tests
run: |
go mod download
go test -v ./...