diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b18c37..7054c25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,10 +13,11 @@ jobs: ci: name: Build, test, lint, and scan runs-on: ubuntu-latest + continue-on-error: ${{ matrix.go == '1.27rc1' }} strategy: fail-fast: false matrix: - go: ["1.25", "1.26"] + go: ["1.25", "1.26", "1.27rc1"] steps: - name: Check out repository @@ -25,7 +26,8 @@ jobs: - name: Set up Go uses: actions/setup-go@v6 with: - go-version: "${{ matrix.go }}.x" + go-version: ${{ matrix.go == '1.27rc1' && '1.27.0-rc.1' || format('{0}.x', matrix.go) }} + allow-prereleases: true cache: true - name: Download dependencies