Skip to content

chore(deps): update actions/setup-go digest to 3041bf5 #7250

chore(deps): update actions/setup-go digest to 3041bf5

chore(deps): update actions/setup-go digest to 3041bf5 #7250

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO_VERSION: "~1.22"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run test
run: go test ./... -coverprofile=coverage.txt
- name: Upload coverage to Codecov
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}