1
0
mirror of https://github.com/labstack/echo.git synced 2024-12-24 20:14:31 +02:00

Add Go 1.23 to CI

This commit is contained in:
toimtoimtoim 2024-08-15 13:36:24 +03:00 committed by Martti T.
parent f13e2640f0
commit a5612d83d0
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ permissions:
env: env:
# run static analysis only with the latest Go version # run static analysis only with the latest Go version
LATEST_GO_VERSION: "1.22" LATEST_GO_VERSION: "1.23"
jobs: jobs:
check: check:

View File

@ -14,7 +14,7 @@ permissions:
env: env:
# run coverage and benchmarks only with the latest Go version # run coverage and benchmarks only with the latest Go version
LATEST_GO_VERSION: "1.22" LATEST_GO_VERSION: "1.23"
jobs: jobs:
test: test:
@ -25,7 +25,7 @@ jobs:
# Echo tests with last four major releases (unless there are pressing vulnerabilities) # Echo tests with last four major releases (unless there are pressing vulnerabilities)
# As we depend on `golang.org/x/` libraries which only support last 2 Go releases we could have situations when # As we depend on `golang.org/x/` libraries which only support last 2 Go releases we could have situations when
# we derive from last four major releases promise. # we derive from last four major releases promise.
go: ["1.19", "1.20", "1.21", "1.22"] go: ["1.20", "1.21", "1.22", "1.23"]
name: ${{ matrix.os }} @ Go ${{ matrix.go }} name: ${{ matrix.os }} @ Go ${{ matrix.go }}
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps: