Skip to content

Bump github.com/mattn/go-colorable from 0.1.12 to 0.1.13 #818

Bump github.com/mattn/go-colorable from 0.1.12 to 0.1.13

Bump github.com/mattn/go-colorable from 0.1.12 to 0.1.13 #818

Workflow file for this run

name: Test
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
test:
strategy:
matrix:
go-version: [1.18.x, 1.19.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: go build -race ./...
- name: Test
run: go test -parallel 1 -short ./...