Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.

Commit bd2a542

Browse files
committed
fix GA
1 parent c1bd197 commit bd2a542

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/go.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Go
2-
on: [push]
2+
on: [pull_request]
33
jobs:
44
build:
55
name: Build
@@ -15,7 +15,9 @@ jobs:
1515
uses: actions/checkout@v1
1616

1717
- name: Build
18-
run: make install
18+
run: |
19+
go get ./...
20+
make install
1921

2022
- name: Test
2123
run: make test

0 commit comments

Comments
 (0)