Skip to content

Commit

Permalink
Add pkg-config steps to workflow
Browse files Browse the repository at this point in the history
- 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. 🎯
  • Loading branch information
horta committed Nov 7, 2024
1 parent 49adea5 commit 5ae06fa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5ae06fa

Please sign in to comment.