name: Ruby on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: strategy: fail-fast: false matrix: ruby: ['2.7', '3.0', '3.1', '3.2', head] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby 3.2 uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - name: Build and test with Rake run: bundle exec rake