Merge pull request #174 from NetSepio/vaibhavvvvv/dev #662
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Lint" | |
on: ["push", "pull_request"] | |
jobs: | |
ci: | |
name: "Run go vet and staticcheck" | |
runs-on: ubuntu-latest | |
container: golang:buster | |
steps: | |
- uses: actions/checkout@v1 | |
- run: "go vet ./..." | |
- uses: dominikh/[email protected] | |
with: | |
install-go: false |