Sha256: 0971891f2d8ef12a1bfca8c73b86420371d9f80c3dc94beb3e225be0a2fc7b1e

Contents?: true

Size: 695 Bytes

Versions: 1

Compression:

Stored size: 695 Bytes

Contents

name: Ruby

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby:
          - 2.6.6
          - 2.7.1

    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - 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

1 entries across 1 versions & 1 rubygems

Version Path
g2_command-2.1.0 .github/workflows/ruby.yml