forked from cosmos/relayer
-
Notifications
You must be signed in to change notification settings - Fork 2
51 lines (43 loc) · 1.06 KB
/
build.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
name: BUILD - build and binary upload
on:
pull_request:
push:
branches:
- main
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
# Install and setup go
- name: Set up Go 1.19
uses: actions/setup-go@v2
with:
go-version: 1.19
# setup gopath
- name: Set PATH
run: |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
# checkout relayer
- name: checkout relayer
uses: actions/checkout@v2
# setup cache
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
# unit tests
- name: run unit tests
run: make test
# build binary
- name: build binary and move to upload location
run: make build
# upload resulting binaries
- name: upload binaries
uses: actions/upload-artifact@v1
with:
name: rly
path: ./build/rly