summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2023-08-18 13:43:44 +0200
committertoonn <toonn@toonn.io>2023-08-18 14:43:40 +0200
commitf3e93c79fb783af0490306625a879b175ab82509 (patch)
treea01ced5ead6030f9ce10c489428933fd921f9551
parent63950a0c018ad041ea7f6e6592898197a31df426 (diff)
GHActions: Set TERM to avoid setupterm errors
The doctests and the man page completion check error due to setupterm not finding the terminfo database when TERM is not set. This also fixes warnings raised by `tput` in the other steps.
-rw-r--r--.github/workflows/pr.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index 642cf558..db6f31be 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -4,6 +4,8 @@ on: pull_request
jobs:
test_PR:
+ env:
+ TERM: xterm
runs-on: ubuntu-latest
strategy:
max-parallel: 4