name: Test on: [push] jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: [2.5, 2.6, 2.7, head] continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }} steps: - name: Checkout uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ${{ matrix.ruby }} - run: bundle install - run: bundle exec rake