-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (29 loc) · 798 Bytes
/
go.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
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.15.6
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make build-linux
- name: Upload Build Artifact
uses: actions/upload-artifact@v2.1.4
with:
# Artifact name
name: xtradb-proxy-check
# A file, directory or wildcard pattern that describes what to upload
path: out/xtradb-proxy-check_linux
# The desired behavior if no files are found using the provided path.
if-no-files-found: error