Skip to content

Bump github.com/mattn/go-isatty from 0.0.19 to 0.0.20 #122

Bump github.com/mattn/go-isatty from 0.0.19 to 0.0.20

Bump github.com/mattn/go-isatty from 0.0.19 to 0.0.20 #122

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: go build ./...
- name: Test
run: go test ./...