Skip to content

build(deps): bump golang.org/x/time from 0.3.0 to 0.4.0 #1

build(deps): bump golang.org/x/time from 0.3.0 to 0.4.0

build(deps): bump golang.org/x/time from 0.3.0 to 0.4.0 #1

Workflow file for this run

on: [pull_request]
name: Coverage
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.mod') }}-${{ hashFiles('**/go.sum') }}
- name: Run coverage
run: go test ./... -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.0.0-beta.3