diff options
| author | lhchavez <[email protected]> | 2020-10-23 05:47:14 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-10-23 05:47:14 -0700 |
| commit | f83530b18dc46867ed06fc261b309b8b545a3b6f (patch) | |
| tree | fa57d290d2928ab15d2b2b5a21c7a0b1a9e37f57 /.github | |
| parent | 10d5ebf231bdc37293235a6fc2bdf94fd25d0c56 (diff) | |
CI refresh (#666)
This change:
* Makes the Travis tests only run tip, since the rest of the Go versions are better served by GitHub Actions.
* Use Go 1.15 in the CI. This has been released for a while.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 42636bc..caa52a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: strategy: fail-fast: false matrix: - go: [ '1.11', '1.12', '1.13', '1.14' ] + go: [ '1.11', '1.12', '1.13', '1.14', '1.15' ] name: Go ${{ matrix.go }} runs-on: ubuntu-20.04 @@ -77,7 +77,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: '1.14' + go-version: '1.15' id: go - name: Check out code into the Go module directory uses: actions/checkout@v1 @@ -99,7 +99,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: '1.14' + go-version: '1.15' id: go - name: Check out code into the Go module directory uses: actions/checkout@v1 @@ -121,7 +121,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v1 with: - go-version: '1.14' + go-version: '1.15' id: go - name: Check out code into the Go module directory uses: actions/checkout@v1 |
