ci: add reviewdog (#1096)
parent
80e3407be1
commit
65905b914d
@ -0,0 +1,19 @@
|
|||||||
|
name: reviewdog
|
||||||
|
on: [pull_request]
|
||||||
|
jobs:
|
||||||
|
staticcheck:
|
||||||
|
name: runner / staticcheck
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: reviewdog/action-staticcheck@v1
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.github_token }}
|
||||||
|
# Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review].
|
||||||
|
reporter: github-pr-review
|
||||||
|
# Report all results.
|
||||||
|
filter_mode: nofilter
|
||||||
|
# Exit with 1 when it find at least one finding.
|
||||||
|
fail_on_error: true
|
||||||
|
# Set staticcheck flags
|
||||||
|
staticcheck_flags: -checks=inherit,-SA1019,-SA1029,-SA5008
|
@ -1,22 +0,0 @@
|
|||||||
package gen
|
|
||||||
|
|
||||||
import "regexp"
|
|
||||||
|
|
||||||
func (g *defaultGenerator) split(source string) []string {
|
|
||||||
reg := regexp.MustCompile(createTableFlag)
|
|
||||||
index := reg.FindAllStringIndex(source, -1)
|
|
||||||
list := make([]string, 0)
|
|
||||||
|
|
||||||
for i := len(index) - 1; i >= 0; i-- {
|
|
||||||
subIndex := index[i]
|
|
||||||
if len(subIndex) == 0 {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
start := subIndex[0]
|
|
||||||
ddl := source[start:]
|
|
||||||
list = append(list, ddl)
|
|
||||||
source = source[:start]
|
|
||||||
}
|
|
||||||
|
|
||||||
return list
|
|
||||||
}
|
|
Loading…
Reference in New Issue