Skip to content

chore: improve test suite testutil/keeper by adding utility methods for state initialization #2891

chore: improve test suite testutil/keeper by adding utility methods for state initialization

chore: improve test suite testutil/keeper by adding utility methods for state initialization #2891

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- master
- develop
jobs:
lint:
name: golangci-lint
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- 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:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.52
args: --issues-exit-code=0 -e SA1019 --timeout 10m
github-token: ${{ secrets.github_token }}
if: env.GIT_DIFF