Sha256: 72fc4b7648ae78f98ea9cad3dec11b237f8ed721dabba1403eb2a86796f6fa4a

Contents?: true

Size: 477 Bytes

Versions: 6

Compression:

Stored size: 477 Bytes

Contents

name: Ruby

on: [push]

jobs:
  build:
    strategy:
      matrix:
        ruby_version: [2.6.x, 2.5.x, 2.4.x]

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - name: Set up Ruby
      uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby_version }}

    - name: Build and test with Rake
      run: |
        gem install bundler
        bundle install --jobs 4 --retry 3
        bundle exec rspec
        bundle exec rubocop

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
humanize-2.5.0 .github/workflows/ruby.yml
humanize-2.4.3 .github/workflows/ruby.yml
humanize-2.4.2 .github/workflows/ruby.yml
humanize-2.4.1 .github/workflows/ruby.yml
humanize-2.4.0 .github/workflows/ruby.yml
humanize-2.3.0 .github/workflows/ruby.yml