Skip to content

chore(deps): update module github.com/mattn/go-runewidth to v0.0.20 #707

chore(deps): update module github.com/mattn/go-runewidth to v0.0.20

chore(deps): update module github.com/mattn/go-runewidth to v0.0.20 #707

Workflow file for this run

name: Go Lint
on:
push:
branches:
- v2.x
pull_request:
branches:
- v2.x
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: stable
- name: Go mod cache
uses: actions/cache@v5
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-mod-
- name: GolangCI-Lint cache
uses: actions/cache@v5
with:
path: ~/.cache/golangci-lint
key: ${{ runner.os }}-golangci-lint-${{ hashFiles('**/.golangci.yml') }}
restore-keys: ${{ runner.os }}-golangci-lint-
- name: Run lint
run: make lint
- name: check-clean-work
run: make check-clean-work