name: Test on: pull_request: types: - opened - reopened - synchronize jobs: test: runs-on: ubuntu-latest continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }} strategy: fail-fast: false matrix: ruby: [2.5, 2.6, 2.7, '3.0', 3.1, head] steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ${{ matrix.ruby }} - run: bundle install - run: bundle exec rake