File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,18 @@ jobs:
1313
1414 build :
1515 runs-on : ubuntu-latest
16+ strategy :
17+ matrix :
18+ go-version :
19+ - 1.23.x
20+ - 1.24.x
1621 steps :
1722 - uses : actions/checkout@v4
1823
1924 - name : Set up Go
2025 uses : actions/setup-go@v5
2126 with :
22- go-version : ' 1.21 '
27+ go-version : ' ${{ matrix.go-version }} '
2328
2429 - name : Install dependencies
2530 run : go test -coverprofile=coverage.txt ./...
Original file line number Diff line number Diff line change 11# ───────────────────────────────────────────────────────────
22# 🌟 STAGE 1: BUILD GO APPLICATION
33# ───────────────────────────────────────────────────────────
4- FROM golang:1.23 AS builder
4+ FROM golang:1.24 AS builder
55
66# Accept build arguments
77ARG SERVER_PORT
You can’t perform that action at this time.
0 commit comments