Skip to content

Bump github.com/mattn/go-runewidth from 0.0.15 to 0.0.16 #9

Bump github.com/mattn/go-runewidth from 0.0.15 to 0.0.16

Bump github.com/mattn/go-runewidth from 0.0.15 to 0.0.16 #9

Workflow file for this run

name: '🧑‍🏭'
on: [ push ]
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: 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@v6
with:
distribution: goreleaser
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}