Skip to content

Merge pull request #59 from catatsuy/renovate/golang-1.x #131

Merge pull request #59 from catatsuy/renovate/golang-1.x

Merge pull request #59 from catatsuy/renovate/golang-1.x #131

Workflow file for this run

name: Go
on: [push]
jobs:
test:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.23.x"]
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: test
run: |
go vet ./...
go test -shuffle on -cover -count 10 ./...
go build