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 69158cf commit a21ed84Copy full SHA for a21ed84
.github/workflows/integration.yml
@@ -0,0 +1,25 @@
1
+on: [push, pull_request]
2
+
3
+jobs:
4
+ unit:
5
+ strategy:
6
+ matrix:
7
+ go: [ "1.14", "1.15" ]
8
+ runs-on: ubuntu-latest
9
+ name: Integration Tests, Go ${{ matrix.go }})
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - uses: actions/setup-go@v2
13
+ with:
14
+ go-version: ${{ matrix.go }}
15
+ - run: go version
16
+ - name: Install Ginkgo
17
+ run: go get github.com/onsi/ginkgo/ginkgo
18
+ - name: Install dependencies
19
+ run: go install
20
+ - name: Run tests
21
+ run: ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace integrationtests
22
+ - name: Run tests (32 bit)
23
+ env:
24
+ GOARCH: 386
25
.travis/script.sh
0 commit comments