Skip to content

chore(deps): update codecov/codecov-action action to v5 #1003

chore(deps): update codecov/codecov-action action to v5

chore(deps): update codecov/codecov-action action to v5 #1003

Workflow file for this run

# name of the action
name: test
# trigger on pull_request or push events
on:
pull_request:
push:
# pipeline to execute
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: install go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
# use version from go.mod file
go-version-file: "go.mod"
cache: true
check-latest: true
- name: test
run: |
go test -race -covermode=atomic -coverprofile=coverage.out ./...
- name: coverage
uses: codecov/codecov-action@05f5a9cfad807516dbbef9929c4a42df3eb78766 # v5.0.3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.out