Skip to content

Bump github.com/fatih/color from 1.16.0 to 1.17.0 #17

Bump github.com/fatih/color from 1.16.0 to 1.17.0

Bump github.com/fatih/color from 1.16.0 to 1.17.0 #17

Workflow file for this run

name: Go CI
on:
pull_request:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build
run: go build .
- name: Fmt
run: test -z $(gofmt -l .)
- name: Vet
run: go vet ./...
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
- name: Test
run: go test -v -race ./...