From da919f783e7d5be2fae43004e59d70ff2479d9a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Mon, 17 Feb 2025 13:48:01 -0600 Subject: [PATCH] chore: Update CI --- .github/workflows/test.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cf8b54d..1819243 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,9 +12,17 @@ concurrency: jobs: test: strategy: + fail-fast: false matrix: - go-version: [1.21.x, 1.22.x, 1.23.x] - os: [ubuntu-latest, macos-latest, windows-latest] + go-version: + - 1.21.x + - 1.22.x + - 1.23.x + - 1.24.x + os: + - ubuntu-latest + - macos-latest + - windows-latest runs-on: ${{ matrix.os }} steps: - name: Checkout code @@ -60,7 +68,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: 1.23.x + go-version: stable cache: true cache-dependency-path: go.sum