File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1414 - uses : actions/checkout@v3
1515 - uses : actions/setup-go@v3
1616 with :
17- go-version : ~1.18
17+ go-version : ~1.19
1818 cache : true
1919 - name : test
2020 run : |
Original file line number Diff line number Diff line change 1414 - uses : actions/checkout@v3
1515 - uses : actions/setup-go@v3
1616 with :
17- go-version : ~1.18
17+ go-version : ~1.19
1818 cache : true
1919 - name : golangci-lint
2020 uses : golangci/golangci-lint-action@v3
Original file line number Diff line number Diff line change 2020 fetch-depth : 0
2121 - uses : actions/setup-go@v3
2222 with :
23- go-version : ~1.18
23+ go-version : ~1.19
2424 cache : true
2525 - uses : goreleaser/goreleaser-action@v3
2626 with :
Original file line number Diff line number Diff line change 11module github.com/charmbracelet/bubbletea-app-template
22
3- go 1.18
3+ go 1.19
44
55require (
66 github.com/charmbracelet/bubbles v0.14.0
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ func (m model) View() string {
6868
6969func main () {
7070 p := tea .NewProgram (initialModel ())
71- if err := p .Start (); err != nil {
71+ if _ , err := p .Run (); err != nil {
7272 fmt .Println (err )
7373 os .Exit (1 )
7474 }
You can’t perform that action at this time.
0 commit comments