Skip to content

add go.sum

add go.sum #21

Workflow file for this run

name: Go
on: push
env:
GO111MODULE: on
jobs:
build:
runs-on: ubuntu-latest
name: Go ${{ matrix.go }}
strategy:
matrix:
go:
- "1.11"
- "1.12"
- "1.13"
- "1.14"
- "1.15"
- "1.16"
- "1.17"
- "1.18"
- "1.19"
- "1.20"
- "1.21"
- "1.22"
- "1.23"
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: go test -race -cover ./...