Skip to content

Bump google.golang.org/api from 0.147.0 to 0.148.0 in /sherlock (#336) #829

Bump google.golang.org/api from 0.147.0 to 0.148.0 in /sherlock (#336)

Bump google.golang.org/api from 0.147.0 to 0.148.0 in /sherlock (#336) #829

name: Lint Sherlock
on:
push:
branches:
- main
paths:
- ".github/workflows/sherlock-lint.yaml"
- "sherlock/**"
- "!sherlock/docs/**"
- "go-shared/**"
- "sherlock-webhook-proxy/**"
pull_request:
branches:
- main
paths:
- ".github/workflows/sherlock-lint.yaml"
- "sherlock/**"
- "!sherlock/docs/**"
- "go-shared/**"
- "sherlock-webhook-proxy/**"
jobs:
golangci:
runs-on: ubuntu-latest
strategy:
matrix:
directory: ["sherlock", "go-shared", "sherlock-webhook-proxy"]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ${{ matrix.directory }}/go.mod
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: latest
# Optional: golangci-lint command line arguments.
args: --timeout 4m0s
# Optional: working directory, useful for monorepos
working-directory: ${{ matrix.directory }}
# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true
# Optional: if set to true then the all caching functionality will be complete disabled,
# takes precedence over all other caching options.
# skip-cache: true
# Optional: if set to true then the action don't cache or restore ~/go/pkg.
# skip-pkg-cache: true
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
# skip-build-cache: true
# Optional:The mode to install golangci-lint. It can be 'binary' or 'goinstall'.
# install-mode: "goinstall"