DDO-3242: Remove "v2_" from table names #826
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |