Skip to content

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

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

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Build
run: go build -v ./...
- name: Test and Generate Coverage
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload Coverage Report
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}