mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 13:25:51 +03:00
[GH-ISSUE #867] Crashes when run as a Github action #630
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#630
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zreigz on GitHub (Aug 16, 2023).
Original GitHub issue: https://github.com/rivo/tview/issues/867
I need to test some CLI application using Github action. It crashes without any error. I was able to reproduce it using the demo app:
https://github.com/zreigz/table-view/actions/runs/5879993817/job/15945282829
@rivo commented on GitHub (Aug 16, 2023):
Something with the environment this runs in. Maybe there is no terminal? You're trying to run an interactive application. It's not going to stop unless someone hits Ctrl-C. How do you want to send that event to your application? Maybe GitHub Actions kills it because it doesn't stop?
This doesn't look like a
tviewissue to me. You'll want to look at how to run these kind of applications in a "headless" environment.@zreigz commented on GitHub (Aug 18, 2023):
@digitallyserviced thanks!