File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ jobs:
1010 - name : Setup Go
1111 uses : actions/setup-go@v3
1212 with :
13- go-version : " 1.24 "
13+ go-version : " 1.25 "
1414 - name : Checkout Code
1515 uses : actions/checkout@v3
1616 - name : Vet
1717 run : |
18- go vet -printf=false ./...
18+ go vet ./...
1919
2020 server :
2121 name : Unit Tests
2424 - name : Setup Go
2525 uses : actions/setup-go@v3
2626 with :
27- go-version : " 1.24 "
27+ go-version : " 1.25 "
2828 - name : Checkout Code
2929 uses : actions/checkout@v3
3030 - name : Run Unit Tests
3838 - name : Setup Go
3939 uses : actions/setup-go@v3
4040 with :
41- go-version : " 1.24 "
41+ go-version : " 1.25 "
4242 - name : Checkout Code
4343 uses : actions/checkout@v3
4444 - name : Install WASM Browser Test
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ module github.com/maxence-charriere/go-app/v10
22
33go 1.23.0
44
5+ toolchain go1.25.0
6+
57require (
68 github.com/SherClockHolmes/webpush-go v1.4.0
79 github.com/gomarkdown/markdown v0.0.0-20260417124207-7d523f7318df
Original file line number Diff line number Diff line change 88.PHONY : test
99test :
1010 @echo " \033[94m• Running Go vet\033[00m"
11- go vet -printf=false ./...
11+ go vet ./...
1212 @echo " \033[94m\n• Running Go tests\033[00m"
1313 go test -race ./...
1414 @echo " \033[94m\n• Running go wasm tests\033[00m"
You can’t perform that action at this time.
0 commit comments