diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f6ef86e..8eb29cf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: # Minimum supported version (1.18) and the latest two - go-version: ['1.18', '1.21', '1.22'] + go-version: ['1.18', '1.22', '1.23'] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v4 - name: Check formatting - if: matrix.go-version == '1.22' && matrix.platform == 'ubuntu-latest' + if: matrix.go-version == '1.23' && matrix.platform == 'ubuntu-latest' run: diff -u <(echo -n) <(go fmt $(go list ./...)) - name: Run unit tests