Skip to content

Commit f83530b

Browse files
authored
CI refresh (libgit2#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.
1 parent 10d5ebf commit f83530b

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
strategy:
4747
fail-fast: false
4848
matrix:
49-
go: [ '1.11', '1.12', '1.13', '1.14' ]
49+
go: [ '1.11', '1.12', '1.13', '1.14', '1.15' ]
5050
name: Go ${{ matrix.go }}
5151

5252
runs-on: ubuntu-20.04
@@ -77,7 +77,7 @@ jobs:
7777
- name: Set up Go
7878
uses: actions/setup-go@v1
7979
with:
80-
go-version: '1.14'
80+
go-version: '1.15'
8181
id: go
8282
- name: Check out code into the Go module directory
8383
uses: actions/checkout@v1
@@ -99,7 +99,7 @@ jobs:
9999
- name: Set up Go
100100
uses: actions/setup-go@v1
101101
with:
102-
go-version: '1.14'
102+
go-version: '1.15'
103103
id: go
104104
- name: Check out code into the Go module directory
105105
uses: actions/checkout@v1
@@ -121,7 +121,7 @@ jobs:
121121
- name: Set up Go
122122
uses: actions/setup-go@v1
123123
with:
124-
go-version: '1.14'
124+
go-version: '1.15'
125125
id: go
126126
- name: Check out code into the Go module directory
127127
uses: actions/checkout@v1

.travis.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
language: go
22

33
go:
4-
- "1.9"
5-
- "1.10"
6-
- "1.11"
7-
- "1.12"
8-
- "1.13"
94
- tip
105

116
install:
@@ -15,10 +10,6 @@ install:
1510
script:
1611
- make test-static
1712

18-
matrix:
19-
allow_failures:
20-
- go: tip
21-
2213
git:
2314
submodules: true
2415

0 commit comments

Comments
 (0)