Skip to content

Commit

Permalink
Providing (almost) full test matrix in GitHub actions (golang-jwt#14)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
oxisto authored May 28, 2021
1 parent 4262520 commit fb1de35
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: [1.14, 1.15, 1.16]
go: [1.11, 1.12, 1.13, 1.14, 1.15, 1.16]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
go-version: "${{ matrix.go }}"
- name: Build
run: |
go vet ./...
Expand Down
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ script:
- go test -v ./...

go:
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
- 1.9
- 1.10
- tip

0 comments on commit fb1de35

Please sign in to comment.