Skip to content

Index: store file names instead of file paths under the "items" key in index.json #4

Index: store file names instead of file paths under the "items" key in index.json

Index: store file names instead of file paths under the "items" key in index.json #4

Workflow file for this run

name: golangci-lint
on:
push:
paths:
- cmd/**
- pkg/**
- internal/**
- scripts/**
- go.*
branches:
- main
pull_request:
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --max-same-issues=0 --max-issues-per-linter=0 --verbose
only-new-issues: true
skip-cache: true
install-mode: binary