Skip to content

Commit

Permalink
chore: bump CI tests against go1.23-rc.1 (#786)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfridman committed Jun 28, 2024
1 parent 7536ecd commit 94d9149
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
go-version: ["1.20", "1.21", "1.22"]
go-version: [oldstable, stable, "1.23.0-rc.1"]
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}
Expand All @@ -43,13 +43,13 @@ jobs:
go build ./...
make test-packages
- name: Install GoReleaser
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.go-version == '1.22'
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.go-version == 'stable'
uses: goreleaser/goreleaser-action@v6
with:
install-only: true
distribution: goreleaser
version: "~> v2"
- name: Gorelease dry-run
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.go-version == '1.22'
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.go-version == 'stable'
run: |
goreleaser release --skip=publish --snapshot --fail-fast --clean

0 comments on commit 94d9149

Please sign in to comment.