We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7fc23f9 + 9f23244 commit e1033ccCopy full SHA for e1033cc
.github/workflows/test.yml
@@ -0,0 +1,29 @@
1
+on:
2
+ push:
3
+ branches: "*"
4
+ pull_request:
5
6
+ workflow_dispatch:
7
+
8
+jobs:
9
+ build:
10
+ name: Test
11
+ runs-on: ubuntu-latest
12
+ steps:
13
14
+ - name: Install
15
+ uses: actions/setup-go@v2
16
+ with:
17
+ go-version: ^1.14
18
19
+ - name: Checkout
20
+ uses: actions/checkout@v2
21
22
+ - name: Vendor # FIXME: remove this step when migrating to pure Go modules.
23
+ run: go mod vendor
24
25
+ - name: Build
26
+ run: make build
27
28
+ - name: Test
29
+ run: make test
0 commit comments