diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 36ed08e..a0580e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,5 +8,7 @@ jobs: steps: - uses: actions/checkout@v1 + - name: Install the ncurses + run: sudo apt-get install --yes libncurses5-dev libncursesw5-dev - name: Build with Makefile run: make fclean && make clean && make re && make \ No newline at end of file diff --git a/.github/workflows/functional.yml b/.github/workflows/functional.yml index 3e690e7..51363ab 100644 --- a/.github/workflows/functional.yml +++ b/.github/workflows/functional.yml @@ -8,5 +8,7 @@ jobs: steps: - uses: actions/checkout@v1 + - name: Install the ncurses + run: sudo apt-get install --yes libncurses5-dev libncursesw5-dev - name: Build with Makefile & Execute tests run: make func \ No newline at end of file diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5f861c4..559661c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,6 +12,8 @@ jobs: uses: actions/setup-python@v1 with: python-version: '3.x' + - name: Install the ncurses + run: sudo apt-get install --yes libncurses5-dev libncursesw5-dev - name: Install Criterion run: sudo add-apt-repository ppa:snaipewastaken/ppa && sudo apt-get update &&