Skip to content

update github actions from v3 to v4 #387

update github actions from v3 to v4

update github actions from v3 to v4 #387

Workflow file for this run

name: Go
on: push
jobs:
build:
runs-on: ubuntu-latest
name: Go ${{ matrix.go }}
strategy:
matrix:
go:
- '1.21'
- '1.22'
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- run: go test -cover -race ./...