Old versions of ruby have been EOL'd, let's test actual lifed versions #72
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: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: ['2.7', '3.1', '3.2', '3.3'] | |
name: Test ruby v${{ matrix.ruby }} support | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Build with dependencies | |
run: | | |
gem install bundler -v 2.1 | |
bundle install | |
- name: Test with rspec | |
run: | | |
bundle exec rspec spec/ | |
- name: Lint with rubocop | |
run: | | |
bundle exec rubocop |