Skip to content

Commit a21ed84

Browse files
move integration tests to GitHub Actions, disable Travis
1 parent 69158cf commit a21ed84

File tree

2 files changed

+25
-13
lines changed

2 files changed

+25
-13
lines changed

.github/workflows/integration.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace integrationtests

.travis/script.sh

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)