* Revert "remove validate config test temporarily" This reverts commit 1a6d2b0a7a9fae89712d2963d14c686d45ff3c0b. * style: fix lint error
@@ -24,3 +24,6 @@ jobs:
- name: Test
run: make test
+
+ - name: Validate Config
+ run: go generate ./... && git diff --exit-code
@@ -43,7 +43,6 @@ func runDirectory(cmd *cobra.Command, args []string) {
// start timer
start := time.Now()
-
detector := Detector(cmd, cfg, source)
// set exit code
@@ -31,13 +31,13 @@ func runGit(cmd *cobra.Command, args []string) {
)
// grab source
- source := "."
- if len(args) == 1 {
- source = args[0]
- if source == "" {
- source = "."
+ source := "."
+ if len(args) == 1 {
+ source = args[0]
+ if source == "" {
+ source = "."
+ }
}
- }
initConfig(source)