Add pkg-config steps to workflow #83
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: push | |
jobs: | |
test: | |
name: Test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-22.04, ubuntu-24.04, macos-13, macos-14, macos-15, windows-2022] | |
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 | |
run: make check |