Skip to content

Added github actions to lint golang code #1

Added github actions to lint golang code

Added github actions to lint golang code #1

Workflow file for this run

name: Lint Go Code
on:
push:
branches:
- master
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: golangci/golangci-lint-action@master
with:
version: v1.57
github-token: ${{ secrets.github_token }}