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.
1 parent 72c80ce commit 8a944adCopy full SHA for 8a944ad
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+on:
2
+ pull_request:
3
+ branches: [ master ]
4
+ push:
5
6
+name: ci/github
7
+jobs:
8
+ unit:
9
+ strategy:
10
+ matrix:
11
+ go-version: [1.15.x]
12
+ os: [ubuntu-latest]
13
+ runs-on: ${{ matrix.os }}
14
+ steps:
15
+ - name: Install Go
16
+ uses: actions/setup-go@v2
17
+ with:
18
+ go-version: ${{ matrix.go-version }}
19
+ - name: Check out code
20
+ uses: actions/checkout@v2
21
+ - name: Install dependencies
22
+ run: |
23
+ go version
24
+ go get -u github.com/onsi/ginkgo/ginkgo
25
+ go get -u github.com/onsi/gomega/...
26
+ ginkgo version
27
+ - name: Build
28
+ run: make build
29
+ - name: Test
30
+ run: make test
0 commit comments