Skip to content

.github: Bump actions/setup-go from 4 to 5 #34

.github: Bump actions/setup-go from 4 to 5

.github: Bump actions/setup-go from 4 to 5 #34

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
# go test runs tests for all modules
- name: go test
run: find . -name go.mod -execdir go test -v -race -count=1 ./... \;