Skip to content

chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #112

chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0

chore(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 #112

Workflow file for this run

# This workflow updates the code coverage of Codecov.
# It runs the unit test and pushes the measured code coverage analysis.
name: "Codecov"
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.18'
check-latest: true
- name: Run coverage
run: go test -coverprofile=coverage.out -covermode=atomic ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)