Skip to content

Commit

Permalink
fix: added installation check for libncurses5 and verbose in yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Jul 25, 2023
1 parent ee0285f commit cd21471
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Modified from GitHub Actions template

name: Pytest

on:
Expand All @@ -21,6 +19,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Check libncurses5
run: |
sudo apt-get update
sudo apt-get install libncurses5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit cd21471

Please sign in to comment.