Skip to content

docs: godocs

docs: godocs #23160

Workflow file for this run

name: golangci-lint
on:
push:
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
jobs:
golangci:
name: lint
runs-on: depot-ubuntu-24.04-4
strategy:
matrix:
working-directory: ['.', 'modules/light-clients/08-wasm', 'e2e']
steps:
- uses: actions/setup-go@v6
with:
go-version: '1.24'
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: golangci-lint
uses: golangci/[email protected]
with:
version: v2.3
only-new-issues: true
args: --timeout 10m
working-directory: ${{ matrix.working-directory }}