bump version to 8.2.2-d #12
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: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: | | |
export PKG_CONFIG_PATH="$(brew --prefix ncurses)/lib/pkgconfig" | |
brew install pkg-config | |
brew install ncurses | |
- name: make engine | |
run: make no-ncurses | |
- name: make tests | |
run: make no-ncurses test2 | |
- name: make debug | |
run: make no-ncurses debug |