Skip to content

Commit fb1de35

Browse files
authored
Providing (almost) full test matrix in GitHub actions (#14)
* Providing full test matrix * Only testing Go version with module support on GitHub actions * Only testing legacy versions on travis. Will be deprecated in time
1 parent 4262520 commit fb1de35

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
strategy:
14+
fail-fast: false
1415
matrix:
15-
go: [1.14, 1.15, 1.16]
16+
go: [1.11, 1.12, 1.13, 1.14, 1.15, 1.16]
1617
steps:
1718
- name: Checkout
1819
uses: actions/checkout@v2
1920
- name: Setup Go
2021
uses: actions/setup-go@v2
2122
with:
22-
go-version: ${{ matrix.go }}
23+
go-version: "${{ matrix.go }}"
2324
- name: Build
2425
run: |
2526
go vet ./...

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ script:
55
- go test -v ./...
66

77
go:
8-
- 1.3
9-
- 1.4
10-
- 1.5
11-
- 1.6
128
- 1.7
9+
- 1.8
10+
- 1.9
11+
- 1.10
1312
- tip

0 commit comments

Comments
 (0)