diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7be10e4..9a90eba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 ./... diff --git a/.travis.yml b/.travis.yml index 1027f56..52043f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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