summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml18
1 files changed, 16 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 424b5dd..bc9e0a0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -21,10 +21,23 @@ jobs:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go: [ '1.17', '1.18' ]
+ include:
+ # Set the minimum Go patch version for the given Go minor
+ # Usable via ${{ matrix.GO_SEMVER }}
+ - go: '1.17'
+ GO_SEMVER: '~1.17.9'
+
+ - go: '1.18'
+ GO_SEMVER: '~1.18.1'
+
+ # Go 1.18.1 isn't released yet for Mac as of Apr 13 2022
+ - go: '1.18'
+ os: 'macos-latest'
+ GO_SEMVER: '1.18.0'
+
# Set some variables per OS, usable via ${{ matrix.VAR }}
# CADDY_BIN_PATH: the path to the compiled Caddy binary, for artifact publishing
# SUCCESS: the typical value for $? per OS (Windows/pwsh returns 'True')
- include:
- os: ubuntu-latest
CADDY_BIN_PATH: ./cmd/caddy/caddy
SUCCESS: 0
@@ -43,7 +56,8 @@ jobs:
- name: Install Go
uses: actions/setup-go@v3
with:
- go-version: ${{ matrix.go }}
+ go-version: ${{ matrix.GO_SEMVER }}
+ check-latest: true
- name: Checkout code
uses: actions/checkout@v3