Skip to content

chore(deps): Bump codecov/codecov-action from 4.6.0 to 5.0.0 #103

chore(deps): Bump codecov/codecov-action from 4.6.0 to 5.0.0

chore(deps): Bump codecov/codecov-action from 4.6.0 to 5.0.0 #103

Workflow file for this run

name: πŸ§ͺ Test
on:
push:
branches:
- main
paths:
- "**.go"
- go.mod
- go.sum
- .github/workflows/test.yml
pull_request:
paths:
- "**.go"
- go.mod
- go.sum
- .github/workflows/test.yml
jobs:
Test:
runs-on: macOS-Latest
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 🐹 Setup Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: go.mod
- name: πŸ“Š Static Analysis
run: go vet -v ./...
- name: πŸ§ͺ Run Tests
run: go test -v -race ./... -coverprofile=coverage.txt -covermode=atomic
- name: β˜‚οΈ Upload Coverage
uses: codecov/codecov-action@968872560f81e7bdde9272853e65f2507c0eca7c # v5.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}