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 d3a8990 commit cc10ae5Copy full SHA for cc10ae5
.github/workflows/test.yml
@@ -33,4 +33,28 @@ jobs:
33
with:
34
file: coverage.txt
35
env_vars: GO=${{ matrix.go }}
36
+ integration:
37
+ strategy:
38
+ matrix:
39
+ go: [ "1.14", "1.15" ]
40
+ runs-on: ubuntu-latest
41
+ name: Integration tests (Go ${{ matrix.go }})
42
+ steps:
43
+ - uses: actions/checkout@v2
44
+ - uses: actions/setup-go@v2
45
+ with:
46
+ go-version: ${{ matrix.go }}
47
+ - run: go version
48
+ - name: Install test tools
49
+ run: |
50
+ go get golang.org/x/tools/cmd/cover
51
+ go get github.com/onsi/ginkgo/ginkgo
52
+ go get github.com/onsi/gomega
53
+ - name: Install dependencies
54
+ run: go build
55
+ - name: Run tests
56
57
+ for i in {1..25}; do
58
+ ginkgo -race -v -randomizeAllSpecs -trace integrationtests/self;
59
+ done
60
0 commit comments