Use NCURSES_EXT_COLORS and NCURSES_EXT_FUNCS to check extended color … #195
This file contains hidden or 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: macos | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.4 | |
| - name: Install dependencies | |
| run: | | |
| gem install bundler --no-document | |
| bundle install | |
| - name: Build package | |
| run: bundle exec rake build | |
| - name: Install package | |
| run: | | |
| gem install pkg/curses-*.gem | |
| ruby -r curses -e 'puts Curses::VERSION' |