Skip to content

chore(deps): update codecov/codecov-action digest to 015f24e (#1325) #7178

chore(deps): update codecov/codecov-action digest to 015f24e (#1325)

chore(deps): update codecov/codecov-action digest to 015f24e (#1325) #7178

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO_VERSION: "~1.22"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run test
run: go test ./... -coverprofile=coverage.txt
- name: Upload coverage to Codecov
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}