Bump rubygems/release-gem from 1.1.0 to 1.1.1 #80
Workflow file for this run
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: ubuntu | |
on: [push] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
ruby: [ head, 3.3, 3.2, 3.1, 3.0 ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install dependencies | |
run: | | |
sudo apt install libncursesw5-dev | |
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' |