Skip to content

chore(deps): bump github.com/cosmos/ibc-go/v8 from 8.4.0 to 8.5.1 (#8… #25818

chore(deps): bump github.com/cosmos/ibc-go/v8 from 8.4.0 to 8.5.1 (#8…

chore(deps): bump github.com/cosmos/ibc-go/v8 from 8.4.0 to 8.5.1 (#8… #25818

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
- concentrated-liquidity-main
env:
GO_VERSION: "1.22"
GIT_DIFF:
jobs:
golangci:
name: Run golangci-lint
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
**/**.go
go.mod
go.sum
.github/**
Makefile
- name: 🐿 Setup Golang
uses: actions/setup-go@v5
with:
go-version: ${{env.GO_VERSION}}
- name: Run golangci-lint
if: env.GIT_DIFF
run: make lint-all
documentation-linter:
name: Run super-linter
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files
# within `super-linter`.
fetch-depth: 0
- name: Get git diff
uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
**/**.md
go.mod
go.sum
Makefile
- name: Run documentation linter
if: env.GIT_DIFF
run: make lint-mdlint