Skip to content

chore(deps): update codecov/codecov-action action to v5.3.0 #121

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

chore(deps): update codecov/codecov-action action to v5.3.0 #121

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@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.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@0da7aa657d958d32c117fc47e1f977e7524753c7 # v5.3.0
with:
token: ${{ secrets.CODECOV_TOKEN }}