Move issuegenerator to cmd so go mod tidy resolves dependencies (#1284)
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
This commit is contained in:
parent
496174f379
commit
aa67926c69
|
|
@ -61,7 +61,7 @@ commands:
|
|||
steps:
|
||||
- run:
|
||||
name: Generate GitHub Issue
|
||||
command: go run .circleci/reportgenerator/main.go ${TEST_RESULTS}
|
||||
command: go run cmd/issuegenerator/main.go ${TEST_RESULTS}
|
||||
when: on_fail
|
||||
|
||||
workflows:
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ import (
|
|||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/bmizerany/assert"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
"go.opencensus.io/stats/view"
|
||||
"go.uber.org/zap"
|
||||
|
|
|
|||
Loading…
Reference in New Issue