diff options
author | toonn <toonn@toonn.io> | 2021-07-15 19:54:14 +0200 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2021-07-20 23:20:47 +0200 |
commit | 49a5dc13a7073db6cc0fc545c17c13cadcd70cdd (patch) | |
tree | b4662a2cb84510421353b528b64085ebded2a42b /.github/workflows | |
parent | b53846dd715e53653e8bbe7de36ddfada7d072fc (diff) | |
download | ranger-49a5dc13a7073db6cc0fc545c17c13cadcd70cdd.tar.gz |
Actions: Set TERM=dumb to avoid tput warnings
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/doctest.yml | 2 | ||||
-rw-r--r-- | .github/workflows/python.yml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/doctest.yml b/.github/workflows/doctest.yml index b8f37465..596cf4b1 100644 --- a/.github/workflows/doctest.yml +++ b/.github/workflows/doctest.yml @@ -13,6 +13,8 @@ jobs: max-parallel: 4 matrix: python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] + env: + TERM: dumb steps: - uses: actions/checkout@v1 with: diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 3bb993ea..1033bf32 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -17,6 +17,8 @@ jobs: max-parallel: 4 matrix: python-version: [3.5, 3.6, 3.7, 3.8, 3.9] + env: + TERM: dumb steps: - uses: actions/checkout@v1 with: |