name: Ruby on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: - 2.6.x - 2.7.x steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Configure Bundler run: | gem install bundler -v 1.17.3 --no-document bundle install --jobs 4 --retry 3 - name: Run tests with RSpec uses: paambaati/codeclimate-action@v2.5.3 env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} with: coverageCommand: bundle exec rspec debug: false