File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 - name : Set up Go
1818 uses : actions/setup-go@v6
1919 with :
20- go-version : ' 1.23 '
20+ go-version : ' 1.25 '
2121
2222 - name : golangci-lint
2323 uses : golangci/golangci-lint-action@v9
3131 strategy :
3232 matrix :
3333 os : [ubuntu-latest, macos-latest, windows-latest]
34- go-version : ['1.22', '1.23 ']
34+ go-version : ['1.25 ']
3535 steps :
3636 - name : Checkout code
3737 uses : actions/checkout@v6
4848 run : go test -v -race -coverprofile=coverage.out -covermode=atomic ./...
4949
5050 - name : Upload coverage to Codecov
51- if : matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23 '
51+ if : matrix.os == 'ubuntu-latest' && matrix.go-version == '1.25 '
5252 uses : codecov/codecov-action@v5
5353 with :
54- file : ./coverage.out
54+ files : ./coverage.out
5555 flags : unittests
5656 fail_ci_if_error : false
Original file line number Diff line number Diff line change 1919 - name : Set up Go
2020 uses : actions/setup-go@v6
2121 with :
22- go-version : ' 1.23 '
22+ go-version : ' 1.25 '
2323
2424 - name : Run tests
2525 run : go test -v -race ./...
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ This guide covers everything you need to know to develop and contribute to teapo
1616
1717## Prerequisites
1818
19- - Go 1.23 or later
19+ - Go 1.25 or later
2020- Git
2121- A code editor (GoLand, VS Code, or similar)
2222
Original file line number Diff line number Diff line change 11module github.com/mallardduck/teapot-router
22
3- go 1.23
3+ go 1.25
44
55require (
66 github.com/go-chi/chi/v5 v5.2.4
You can’t perform that action at this time.
0 commit comments