From 5ae06fa71b7ee7fdaa0752fc38f79b73342122f7 Mon Sep 17 00:00:00 2001 From: Danilo Horta Date: Thu, 7 Nov 2024 16:16:28 +0000 Subject: [PATCH] Add pkg-config steps to workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added pkg-config command to check ncurses existence. - Added command to fetch ncurses libraries. Ensuring that necessary dependencies like ncurses are present is crucial for successful build and checks. These steps will automate this verification process in our CI pipeline. 🎯 --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 615b606..30a052e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,10 @@ jobs: steps: - uses: actions/checkout@v4 + - name: pkg1 + run: pkg-config --exists ncurses + - name: pkg2 + run: pkg-config --libs ncurses - name: make run: make - name: make check