Skip to content

chore(deps): bump github.com/Masterminds/sprig/v3 from 3.2.3 to 3.3.0 #729

chore(deps): bump github.com/Masterminds/sprig/v3 from 3.2.3 to 3.3.0

chore(deps): bump github.com/Masterminds/sprig/v3 from 3.2.3 to 3.3.0 #729

Workflow file for this run

# GitHub Actions Workflow definition for running unit tests and code coverage
name: unit-tests
on:
push:
branches:
- master
pull_request:
jobs:
unit-tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Go
uses: actions/[email protected]
with:
go-version-file: 'go.mod'
- name: Run Unit Tests
run: go test -race -coverprofile=coverage.out -covermode=atomic -v ./...
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)