-
Notifications
You must be signed in to change notification settings - Fork 2
55 lines (55 loc) · 1.2 KB
/
main.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
name: Unit Tests
on:
push:
branches:
- main
permissions: read-all
jobs:
golangci:
name: Lint
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.22.5
check-latest: true
- name: Run Linters
run: ./scripts/test.sh lint all
env:
PROCS: 1
GOMAXPROGS: 1
test:
name: Unit Tests
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.22.5
check-latest: true
- name: Run Unit Tests
run: ./scripts/test.sh test all
env:
PROCS: 1
GOMAXPROGS: 1
summary:
name: Summary
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: 1.22.5
check-latest: true
- name: Create Summary
run: ./scripts/test.sh summary all
env:
PROCS: 1
GOMAXPROGS: 1