-
Notifications
You must be signed in to change notification settings - Fork 30
179 lines (146 loc) · 4.56 KB
/
test.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
name: Go Test
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
strategy:
matrix:
go_version: [ 1.16 ]
os: [ ubuntu-latest ]
name: Build with go ${{ matrix.go_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: |
GOARCH=amd64 GOOS=linux go build -v -o pastemed .
build_swagger:
strategy:
matrix:
go_version: [ 1.16 ]
os: [ ubuntu-latest ]
name: Build swagger with go ${{ matrix.go_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Get dependencies
run: |
go get -v -t -d ./...
go get -u github.com/swaggo/swag/cmd/swag
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build swagger
run: |
GOARCH=amd64 GOOS=linux swag init
docker_build:
strategy:
matrix:
os: [ ubuntu-latest ]
name: Build with docker on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
platforms: |
linux/amd64
push: false
test_with_mysql:
strategy:
matrix:
# go_version: [1.12, 1.13]
# remove 1.13 for https://github.com/golang/go/issues/31859
go_version: [ 1.16 ]
mysql_version: [ 5.5, 8 ]
os: [ ubuntu-latest ]
name: Test with go ${{ matrix.go_version }} using mysql:${{ matrix.mysql_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
services:
mysql:
image: mysql:${{ matrix.mysql_version }}
env:
MYSQL_USER: username
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: pasteme
ports:
- 4399:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Test
run: |
cp .github/config/config.mysql.json config.json
bash -x gotest.sh
test_with_sqlite3:
strategy:
matrix:
# go_version: [1.12, 1.13]
# remove 1.13 for https://github.com/golang/go/issues/31859
go_version: [ 1.16 ]
os: [ ubuntu-latest ]
name: Test with go ${{ matrix.go_version }} using sqlite3 on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go ${{ matrix.go_version }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go_version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Test
run: |
cp .github/config/config.sqlite3.json config.json
bash -x gotest.sh