Skip to content

Commit ed29455

Browse files
committed
Upgrade CI to more modern Go versions.
1 parent df126f2 commit ed29455

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.github/workflows/main.yml

+1-11
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ ubuntu-latest, macos-latest, windows-latest ]
20-
go: [ '1.15', 'stable', 'oldstable' ]
20+
go: [ '1.20.x', '1.21.x', '1.22.x' ]
2121

2222
runs-on: ${{ matrix.os }}
2323
steps:
@@ -42,17 +42,7 @@ jobs:
4242
run: |
4343
go mod verify
4444
45-
- name: Test Go 1.15
46-
# This step if needed because -shuffle not available on Go 1.15.
47-
# Tests are failing on MacOS. So, we just disable it.
48-
if: >-
49-
matrix.go == '1.15' && matrix.os != 'macos-latest'
50-
run: |
51-
go test -v -race -cover ./...
52-
5345
- name: Test
54-
if: >-
55-
matrix.go != '1.15'
5646
run: |
5747
go test -v -race -shuffle=on -cover ./...
5848

0 commit comments

Comments
 (0)