Skip to content

Bump github.com/mattn/go-isatty from 0.0.11 to 0.0.20 #15

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

Bump github.com/mattn/go-isatty from 0.0.11 to 0.0.20 #15

Workflow file for this run

name: Pull Requests
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
pull-requests: read
env:
GO_VERSION: stable
jobs:
build:
strategy:
matrix:
dir: [".", "example"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
run: go build -v ./...
working-directory: ${{ matrix.dir }}
- name: Test
run: go test -v ./...
working-directory: ${{ matrix.dir }}
lint:
strategy:
matrix:
dir: [".", "example"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
working-directory: ${{ matrix.dir }}