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