Skip to content

fix panic found by fuzzer (#8) #17

fix panic found by fuzzer (#8)

fix panic found by fuzzer (#8) #17

Workflow file for this run

name: "tests"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with: { version: latest }
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Print system information
run: cat /proc/{meminfo,cpuinfo}
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: TEST_FORMAT=github-actions make test