summaryrefslogtreecommitdiffstats
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 08822e53b..74c41d28c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -7,7 +7,11 @@ jobs:
GO111MODULE: on
strategy:
matrix:
- go-version: [1.17.x, 1.18.x]
+ # Note: We upgraded to Go 1.18 in Hugo v0.95.0
+ # Go 1.18 had some breaking changes on the source level which means Hugo cannot be built
+ # with older Go versions, but the improvements in Go 1.18 were to good to pass on (e.g. break and continue).
+ # Note that you don't need Go (or Go 1.18) to run a pre-built binary.
+ go-version: [1.18.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps: