File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 2020 runs-on : windows-latest
2121 steps :
2222 - uses : actions/checkout@v4
23+ - name : Setup env
24+ run : |
25+ go env -w GOTOOLCHAIN=go1.25.8+auto
2326 - name : Test
2427 run : .\build.bat test
2528
2831 runs-on : ubuntu-latest
2932 steps :
3033 - uses : actions/checkout@v4
34+ - name : Setup env
35+ run : |
36+ go env -w GOTOOLCHAIN=go1.25.8+auto
3137 - name : Test (go test)
3238 run : |
3339 cd src
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ if not defined GOPRG (
1414 set GOPRG = go
1515)
1616
17+ if not defined GOTOOLCHAIN (
18+ set GOTOOLCHAIN = go1.25.8+auto
19+ )
20+
1721if not defined GOARCH (
1822 echo GOARCH is not defined, detecting cpu architecture...
1923 if " %PROCESSOR_ARCHITECTURE% " == " x86" (
Original file line number Diff line number Diff line change 11module github.com/yuk7/wsldl
22
3- go 1.26
3+ go 1.25
44
55require (
66 github.com/fatih/color v1.18.0
You can’t perform that action at this time.
0 commit comments