Skip to content

.github: Bump actions/checkout from 3 to 4 (#5) #29

.github: Bump actions/checkout from 3 to 4 (#5)

.github: Bump actions/checkout from 3 to 4 (#5) #29

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@v4
with:
go-version: '1.20'
# go test runs tests for all modules
- name: go test
run: find . -name go.mod -execdir go test -v -race -count=1 ./... \;