Skip to content

chore(deps): Bump actions/checkout from 4.2.0 to 4.2.1 (#152) #91

chore(deps): Bump actions/checkout from 4.2.0 to 4.2.1 (#152)

chore(deps): Bump actions/checkout from 4.2.0 to 4.2.1 (#152) #91

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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: 🐹 Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
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@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
with:
token: ${{ secrets.CODECOV_TOKEN }}