feat: refact osmo to pull individual pools #165
Workflow file for this run
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
- master | |
- "release/*" | |
jobs: | |
golangci: | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.0 | |
- uses: actions/checkout@v3 | |
- uses: technote-space/get-diff-action@v4 | |
with: | |
PATTERNS: | | |
**/**.go | |
go.mod | |
go.sum | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.53.2 | |
args: --timeout 10m | |
github-token: ${{ secrets.github_token }} |