Skip to content

Commit 23623f5

Browse files
committed
Fix CI: goinstall mode for golangci-lint, fix plan.go vet warning
1 parent 9d6e6bf commit 23623f5

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ jobs:
6868
uses: golangci/golangci-lint-action@v7
6969
with:
7070
version: v2.1.0
71+
install-mode: goinstall
7172
args: --timeout 5m
7273

7374
- name: govulncheck

cmd/plan.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var planCreateCmd = &cobra.Command{
3434

3535
// Generate the plan prompt (would normally be sent to an LLM).
3636
prompt := planner.Generate(description, "")
37-
cmd.Println("Plan prompt generated. Send this to an LLM to produce a plan:\n")
37+
cmd.Println("Plan prompt generated. Send this to an LLM to produce a plan:")
3838
cmd.Println("--- System ---")
3939
cmd.Println(prompt.System)
4040
cmd.Println()

0 commit comments

Comments
 (0)