Skip to content

chore(deps): Bump Go version to 1.23.0 (#131) #80

chore(deps): Bump Go version to 1.23.0 (#131)

chore(deps): Bump Go version to 1.23.0 (#131) #80

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- 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@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}