.github/workflows/ruby.yml in conifer-1.2.1 vs .github/workflows/ruby.yml in conifer-1.3.0

- old
+ new

@@ -8,24 +8,25 @@ runs-on: ubuntu-latest strategy: matrix: ruby: - - 2.6.x - - 2.7.x + - '2.6' + - '2.7' + - '3.0' + - '3.1' steps: - uses: actions/checkout@v2 + - name: Set up Ruby - uses: actions/setup-ruby@v1 + uses: ruby/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 + bundler-cache: true + - name: Run tests with RSpec - uses: paambaati/codeclimate-action@v2.5.3 + uses: paambaati/codeclimate-action@v2.7.5 env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} with: coverageCommand: bundle exec rspec debug: false