Skip to content

Commit aa2551a

Browse files
committed
GitHub Actions: replace broken 1.17 workflow with 1.23 for now
(With 1.17.13, the tests would not even compile.)
1 parent 94fe49e commit aa2551a

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -230,29 +230,19 @@ jobs:
230230
fail-fast: false
231231
matrix:
232232
os: [ubuntu-latest]
233-
# https://github.com/golang/go/issues/55078
234-
# golang.org/x/sys/unix broke on Go versions before 1.17. Not worth
235-
# fixing.
236-
gover: ['1.17.13']
233+
# TODO: switch to an older Go version once tests are made compatible
234+
gover: ['1.23']
237235
env:
238236
PYTHONDONTWRITEBYTECODE: x
239-
GOPATH: ${{github.workspace}}
240-
GO111MODULE: off
241237
steps:
242238
- name: Turn off git core.autocrlf
243239
if: matrix.os == 'windows-latest'
244240
run: git config --global core.autocrlf false
245241
- uses: actions/checkout@v4
246-
with:
247-
path: src/github.com/maruel/panicparse
248242
- uses: actions/setup-go@v5
249243
with:
250244
go-version: "=${{matrix.gover}}"
251-
- name: 'Check: go get -d -t'
252-
working-directory: src/github.com/maruel/panicparse
253-
run: go get -d -t ./...
254245
- name: 'Check: go test'
255-
working-directory: src/github.com/maruel/panicparse
256246
run: go test -timeout=120s -bench=. -benchtime=1x ./...
257247

258248

0 commit comments

Comments
 (0)