Include vendor/PDCurses to gems #73
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: macos | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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' |