Skip to content

add Sharding

add Sharding #98

Workflow file for this run

name: "Generator"
on:
push:
branches:
- v10
paths:
- "_gen/**"
pull_request:
branches:
- v10
paths:
- "_gen/**"
env:
GOWORK: off
jobs:
sca-lint:
name: Static Code Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout repository code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./_gen/go.mod
cache-dependency-path: ./_gen/go.sum
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53.3
working-directory: ./_gen
args: ./...