Merge pull request #122 from wtn/dir #164
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: windows | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| ruby: [ 'mingw', 'mswin', '3.4' ] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Build package | |
| run: bundle exec rake build | |
| - name: Install package | |
| run: | | |
| gem install pkg/curses-*.gem | |
| ruby -r curses -e 'puts Curses::VERSION' |