From 970c0c8695bb650484c47e81618c65455d430ce3 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Thu, 22 Aug 2024 22:41:32 +0800 Subject: [PATCH] chore: restrict Go versions and simplify CI workflow - Update the Go versions to only include 1.20, 1.21, and 1.22 - Remove the macOS job configuration from the workflow Signed-off-by: Bo-Yi Wu --- .github/workflows/go.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4aa3672..1d2d4d7 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -31,12 +31,10 @@ jobs: strategy: matrix: os: [ubuntu-latest] - go: [1.18, 1.19, "1.20", 1.21, 1.22] + go: ["1.20", 1.21, 1.22] include: - os: ubuntu-latest go-build: ~/.cache/go-build - - os: macos-latest - go-build: ~/Library/Caches/go-build name: ${{ matrix.os }} @ Go ${{ matrix.go }} runs-on: ${{ matrix.os }} env: