-
Notifications
You must be signed in to change notification settings - Fork 70
98 lines (79 loc) · 1.96 KB
/
build_test_release.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
93
94
95
96
97
98
name: Build, test and release
permissions:
contents: write
on:
pull_request:
branches:
- main
push:
branches:
- main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: |
go install github.com/swaggo/swag/cmd/swag@latest
go get ./...
- name: Build
run: make build DOCS=false ARGS="-v"
test:
runs-on: ubuntu-latest
env:
ENV: test
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: |
go install github.com/swaggo/swag/cmd/swag@latest
go get ./...
- name: Test Unit
run: make test_unit
- name: Test E2E
run: make test_e2e
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
release:
runs-on: ubuntu-latest
needs: test
if: github.ref_type == 'tag'
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
- name: Install dependencies
run: |
go install github.com/swaggo/swag/cmd/swag@latest
go get ./...
- name: Build
run: make build_all DOCS=false ARGS="-v"
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "$tag" \
bin/* \
--repo="$GITHUB_REPOSITORY" \
--title="Onepixel release ${tag#v}" \
--generate-notes