Skip to content

Fix nil-pointer dereference. #39

Fix nil-pointer dereference.

Fix nil-pointer dereference. #39

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
continue-on-error: true
runs-on: ubuntu-18.04
strategy:
matrix:
go:
[
"1.16",
"1.17",
"1.18",
"1.19",
"1.20",
"1.21",
"1.22",
"1.23",
"1.24",
"1.25",
]
name: Go ${{ matrix.go }} sample
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...