Skip to content

bump golang.org/x/exp #36

bump golang.org/x/exp

bump golang.org/x/exp #36

Workflow file for this run

name: '🧑‍🏭'
on: [ push, pull_request ]
permissions:
contents: write
jobs:
check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- run: go test -v -vet='all' ./...
release:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') == true
needs: check
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- uses: goreleaser/goreleaser-action@v5
with:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}