diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 47d8f7b..babc3f5 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,27 +15,17 @@ jobs: go: - 'stable' - 'oldstable' - - 'current' steps: - name: Checkout the repo uses: actions/checkout@v4 - name: Set up Go - if: ${{ matrix.go }} != 'current' uses: actions/setup-go@v5 with: go-version: '${{ matrix.go }}' check-latest: true cache-dependency-path: ./go.sum - - name: Set up Go - if: ${{ matrix.go }} != 'current' - uses: actions/setup-go@v5 - with: - go-version-file: ./go.mod - check-latest: true - cache-dependency-path: ./go.sum - - name: Build run: go build -v ./...