Skip to content

Commit

Permalink
move integration tests to GitHub Actions, disable Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
marten-seemann committed Nov 21, 2020
1 parent 69158cf commit a21ed84
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 13 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on: [push, pull_request]

jobs:
unit:
strategy:
matrix:
go: [ "1.14", "1.15" ]
runs-on: ubuntu-latest
name: Integration Tests, Go ${{ matrix.go }})
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go version
- name: Install Ginkgo
run: go get github.com/onsi/ginkgo/ginkgo
- name: Install dependencies
run: go install
- name: Run tests
run: ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace integrationtests
- name: Run tests (32 bit)
env:
GOARCH: 386
run: ginkgo -r -v -randomizeAllSpecs -randomizeSuites -trace integrationtests
13 changes: 0 additions & 13 deletions .travis/script.sh

This file was deleted.

0 comments on commit a21ed84

Please sign in to comment.