Skip to content

diagnostics: fix a couple of lint warnings #14

diagnostics: fix a couple of lint warnings

diagnostics: fix a couple of lint warnings #14

Workflow file for this run

name: Build and test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ['1.18']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Go ${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Install and test
run: |
go install ./...
go test ./...