Skip to content

chore(deps): bump github.com/charmbracelet/x/ansi from 0.3.0 to 0.3.1 #549

chore(deps): bump github.com/charmbracelet/x/ansi from 0.3.0 to 0.3.1

chore(deps): bump github.com/charmbracelet/x/ansi from 0.3.0 to 0.3.1 #549

Workflow file for this run

name: coverage
on: [push, pull_request]
jobs:
coverage:
runs-on: ubuntu-latest
env:
GO111MODULE: "on"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
go test -race -covermode atomic -coverprofile=profile.cov ./...
go install github.com/mattn/goveralls@latest
goveralls -coverprofile=profile.cov -service=github