File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed
Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments