File tree Expand file tree Collapse file tree 3 files changed +25
-24
lines changed Expand file tree Collapse file tree 3 files changed +25
-24
lines changed Original file line number Diff line number Diff line change 1+ name : ubuntu
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - master
8+
9+ jobs :
10+ tests :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v1
14+ - uses : actions/setup-go@v2
15+ with :
16+ go-version : " ^1.15.5"
17+ - name : Make dependencies
18+ run : make deps
19+ - name : Compile
20+ run : make linux
21+ - name : Run unit tests
22+ run : go test ./...
23+ - name : Run end-2-end tests
24+ run : make e2e
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ pipeline:
1616 - desc : ' Install go'
1717 cmd : |
1818 cd /tmp
19- wget -q https://storage.googleapis.com/golang/go1.14.7 .linux-amd64.tar.gz -O go.tar.gz
19+ wget -q https://storage.googleapis.com/golang/go1.15.5 .linux-amd64.tar.gz -O go.tar.gz
2020 tar -xf go.tar.gz
2121 mv go /usr/local
2222 ln -s /usr/local/go/bin/go /usr/bin/go
You can’t perform that action at this time.
0 commit comments