Skip to content

chore(deps): bump golang.org/x/mod from 0.31.0 to 0.32.0 in /backend #1991

chore(deps): bump golang.org/x/mod from 0.31.0 to 0.32.0 in /backend

chore(deps): bump golang.org/x/mod from 0.31.0 to 0.32.0 in /backend #1991

Workflow file for this run

name: Run Go Linter
on:
push:
branches: [main]
paths:
- "backend/**"
- "cli/**"
- "types/**"
- "go.work"
pull_request:
branches: [main]
paths:
- "backend/**"
- "cli/**"
- "types/**"
- "go.work"
permissions:
contents: read
pull-requests: read
checks: write
jobs:
golangci-lint:
name: Run Golangci-lint
runs-on: depot-ubuntu-24.04-16
strategy:
fail-fast: false
matrix:
module: [backend, cli, types]
include:
- module: backend
args: --build-tags=exclude_frontend --config=.golangci.yml
- module: cli
args: --config=../backend/.golangci.yml
- module: types
args: --config=../backend/.golangci.yml
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: ${{ matrix.module }}/go.mod
cache-dependency-path: ${{ matrix.module }}/go.sum
- name: Run Golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.7.2
args: ${{ matrix.args }}
working-directory: ${{ matrix.module }}
only-new-issues: ${{ github.event_name == 'pull_request' }}