name: Ruby on: [push, pull_request] jobs: build: strategy: matrix: ruby_version: [3.3, 3.2, 3.1] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby_version }} - name: Build and test with Rake run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rspec bundle exec rubocop