Bump net-ssh from 7.2.0 to 7.2.1 (#34) #81
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
--- | |
# This workflow will download a prebuilt Ruby version, install dependencies | |
# and run tests with Rake. For more information see: | |
# https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby | |
name: Ruby | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ['3.1.2'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
# To automatically get bug fixes and new Ruby versions for | |
# ruby/setup-ruby, change this to | |
# (see https://github.com/ruby/setup-ruby#versioning): | |
# uses: ruby/setup-ruby@v1, here v1.127.0 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
# runs 'bundle install' and caches installed gems automatically | |
bundler-cache: true | |
- name: Run tests | |
run: bundle exec rake rspec |