From c7efc804f7680a52ed01b9963edad64e64883e23 Mon Sep 17 00:00:00 2001 From: Nehir <105875351+catriverr@users.noreply.github.com> Date: Wed, 21 Aug 2024 18:20:49 +0300 Subject: [PATCH] include pkg-config and ncursesw --- .github/workflows/c-cpp.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 2e3b5dc..3c6ea37 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -14,7 +14,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: configure - run: make + run: | + brew install pkg-config + brew install ncurses - name: make run: make - name: make