Skip to content

chore(deps): bump github.com/mattn/go-runewidth from 0.0.27 to 0.0.29 #122

chore(deps): bump github.com/mattn/go-runewidth from 0.0.27 to 0.0.29

chore(deps): bump github.com/mattn/go-runewidth from 0.0.27 to 0.0.29 #122

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ["v*"]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version-file: "go.mod"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
release:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs: test
permissions:
contents: write
steps:
- uses: actions/checkout@v7
- name: Create Release
uses: softprops/action-gh-release@v3
with:
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}