We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b368c4b commit 11447e8Copy full SHA for 11447e8
.github/workflows/CI.yml
@@ -20,7 +20,7 @@ jobs:
20
go-version: '1.24'
21
22
- name: Run golangci-lint
23
- uses: golangci/golangci-lint-action@v3
+ uses: golangci/golangci-lint-action@v8
24
with:
25
version: latest
26
args: --timeout=5m
internal/tui/tui.go
@@ -65,6 +65,7 @@ func (a *App) watchGitDir() {
65
for _, path := range watchPaths {
66
if err := watcher.Add(path); err != nil {
67
// ignore errors for paths that might not exist yet
68
+ log.Printf("error watching path %s: %v", path, err.Error())
69
}
70
71
0 commit comments