Sha256: 03e84072ab4f4396e798f45a689424f11d1deaa8b7dcf2a62e93956228b392b2

Contents?: true

Size: 602 Bytes

Versions: 4

Compression:

Stored size: 602 Bytes

Contents

name: Ruby Test
on: [push]
jobs:
  build:
    strategy:
      matrix:
        ruby: [2.4.x, 2.5.x, 2.6.x]
        os: [ubuntu-latest, macos-latest]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v1
    - name: Set up Ruby ${{ matrix.ruby }}
      uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Build and test with Rake
      run: |
        gem install bundler --force --no-document
        bundle install --jobs 4 --retry 3
        bundle exec rake
    - run: ./bin/bgem
    - run: ./bin/bgem list
    - run: ./bin/bgem install rake

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bundled_gems-0.0.6 .github/workflows/ci.yml
bundled_gems-0.0.5 .github/workflows/ci.yml
bundled_gems-0.0.4 .github/workflows/ci.yml
bundled_gems-0.0.3 .github/workflows/ci.yml