Skip to content

chore: update dependencies in README #306

chore: update dependencies in README

chore: update dependencies in README #306

Workflow file for this run

name: Lint Go Code
# linting should occur on push or merge to master branch
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
stable: "false"
go-version: "1.18"
- name: Lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh |
sh -s -- -b $(go env GOPATH)/bin v1.53.3
golangci-lint run