Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.

chore(deps): bump mvdan.cc/gofumpt from 0.6.0 to 0.10.0 #290

chore(deps): bump mvdan.cc/gofumpt from 0.6.0 to 0.10.0

chore(deps): bump mvdan.cc/gofumpt from 0.6.0 to 0.10.0 #290

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
- concentrated-liquidity-main
env:
GO_VERSION: "1.21"
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