Skip to content

chore(deps): bump golang.org/x/term from 0.22.0 to 0.23.0 #506

chore(deps): bump golang.org/x/term from 0.22.0 to 0.23.0

chore(deps): bump golang.org/x/term from 0.22.0 to 0.23.0 #506

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