Skip to content

chore(deps): bump actions/setup-go from 4 to 5 #190

chore(deps): bump actions/setup-go from 4 to 5

chore(deps): bump actions/setup-go from 4 to 5 #190

Workflow file for this run

name: golang-test
on:
pull_request:
jobs:
gotest:
name: gotest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Setup Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: 'go.mod'
- name: Go Build
run: go build -v ./.
- name: Go Test
run: go test ./... -timeout=30s -parallel=4