Skip to content

Commit 72d59c8

Browse files
committed
Unit tests, vet & website builds moved to Github Actions
1 parent 04136ab commit 72d59c8

File tree

2 files changed

+1
-22
lines changed

2 files changed

+1
-22
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
go: [1.12, 1.13]
10+
go: [1.12, 1.13, 1.14]
1111
os: [ubuntu-latest, macos-latest, windows-latest]
1212
make_target: [test, vet]
1313

.travis.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,13 @@ language: go
22
matrix:
33
fast_finish: false
44
include:
5-
- name: unit tests
6-
env: MAKE_TARGET=test GOFLAGS=-mod=vendor GO111MODULE=on
7-
go: "1.12.x"
85
- name: acceptance tests EE
96
env: MAKE_TARGET=testacc GITLAB_LICENSE_FILE=JulienPivotto.gitlab-license GOFLAGS=-mod=vendor GO111MODULE=on GITLAB_BASE_URL=http://127.0.0.1:8080/api/v4 GITLAB_TOKEN=ACCTEST
107
go: "1.12.x"
118
- name: acceptance tests CE
129
env: MAKE_TARGET=testacc GOFLAGS=-mod=vendor GO111MODULE=on GITLAB_BASE_URL=http://127.0.0.1:8080/api/v4 GITLAB_TOKEN=ACCTEST
1310
go: "1.12.x"
14-
- name: govet tests
15-
env: MAKE_TARGET=vet GOFLAGS=-mod=vendor GO111MODULE=on
16-
go: "1.12.x"
17-
- name: website tests
18-
env: MAKE_TARGET=website-test GOFLAGS=-mod=vendor GO111MODULE=on
19-
go: "1.12.x"
20-
- name: unit tests (go 1.12)
21-
env: MAKE_TARGET=test GOFLAGS=-mod=vendor GO111MODULE=on
22-
go: "1.13.x"
23-
- name: unit tests (go tip)
24-
env: MAKE_TARGET=test GOFLAGS=-mod=vendor GO111MODULE=on
25-
go: tip
2611
allow_failures:
27-
- name: unit tests (go tip)
28-
env: MAKE_TARGET=test GOFLAGS=-mod=vendor GO111MODULE=on
29-
go: tip
30-
- name: unit tests (go 1.12)
31-
env: MAKE_TARGET=test GOFLAGS=-mod=vendor GO111MODULE=on
32-
go: "1.13.x"
3312
- name: acceptance tests EE
3413
env: MAKE_TARGET=testacc GITLAB_LICENSE_FILE=JulienPivotto.gitlab-license GOFLAGS=-mod=vendor GO111MODULE=on GITLAB_BASE_URL=http://127.0.0.1:8080/api/v4 GITLAB_TOKEN=ACCTEST
3514
go: "1.12.x"

0 commit comments

Comments
 (0)