Updates Verification Flow from link method to OTP method #109
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: verify format & lint | |
on: [push,pull_request] | |
jobs: | |
lint: | |
name: linux64 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: './go.mod' | |
- name: Install golangci lint | |
run: make install-golangci-lint | |
- name: Install goimports | |
run: make install-goimports | |
- name: Verify Format & Lint | |
run: make verify |