Skip to content

fix linter errors

fix linter errors #13

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint-main:
strategy:
matrix:
platform: ["ubuntu-latest"]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Lint main.go
run: make lint-go-main
lint-goroutine:
strategy:
matrix:
platform: ["ubuntu-latest"]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Lint go-routine.go
run: make lint-go-routine