Bump step-security/harden-runner from 2.13.0 to 2.13.1 #154
Workflow file for this run
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: 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@v5 | |
| - 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' |