Sha256: 928290683f289b714691bdce6bca1255fccccfe069e65502b0d267e395c51fa3

Contents?: true

Size: 603 Bytes

Versions: 6

Compression:

Stored size: 603 Bytes

Contents

name: Ruby

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.6.6
      - name: Configure Bundler
        run: |
          gem install bundler:2.1.4 --no-document
          bundle install --jobs 4 --retry 3
      - name: Run tests with RSpec
        uses: paambaati/codeclimate-action@v2.5.4
        env:
          CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
        with:
          coverageCommand: bundle exec rspec
          debug: false

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
g2_command-2.0.0 .github/workflows/ruby.yml
g2_command-1.0.0 .github/workflows/ruby.yml
g2_command-0.4.0 .github/workflows/ruby.yml
g2_command-0.3.0 .github/workflows/ruby.yml
g2_command-0.2.0 .github/workflows/ruby.yml
g2_command-0.1.0 .github/workflows/ruby.yml