Skip to content

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

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 #329

Workflow file for this run

name: linux
on: [push]
jobs:
build:
name: build
runs-on: [ ubuntu-latest ]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
id: go
- name: Go version
run: go version
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test ./...