Skip to content

chore(deps): bump github.com/lucasb-eyer/go-colorful from 1.3.0 to 1.4.0 in /examples in the all group across 1 directory #5297

chore(deps): bump github.com/lucasb-eyer/go-colorful from 1.3.0 to 1.4.0 in /examples in the all group across 1 directory

chore(deps): bump github.com/lucasb-eyer/go-colorful from 1.3.0 to 1.4.0 in /examples in the all group across 1 directory #5297

Workflow file for this run

name: coverage
on: [push, pull_request]
jobs:
coverage:
strategy:
matrix:
go-version: [^1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v6
- name: Coverage
run: |
go test -race -covermode=atomic -coverprofile=coverage.txt ./...
- uses: codecov/codecov-action@v6
with:
file: ./coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}