Sha256: 44a41c637a8071e86e644726d93e8c82e91f1bba2ccd86bb2304d2e3b0c1214d

Contents?: true

Size: 1.33 KB

Versions: 9

Compression:

Stored size: 1.33 KB

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: Ruby

on: [push, pull_request]

jobs:
  test:

    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: [
          '2.4', '2.5', # eol
          '2.6', '2.7', # maintained
        ]

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Run tests
      run: bundle exec rake
      env:
        UPLOADCARE_PUBLIC_KEY: demopublickey
        UPLOADCARE_SECRET_KEY: demoprivatekey

  style-check:
    runs-on: ubuntu-latest
    continue-on-error: true
    strategy:
      matrix:
        ruby-version: ['2.7',]
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Install Rubocop
      run: gem install rubocop
    - name: Check codestyle
      run: rubocop

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
uploadcare-ruby-3.3.2 .github/workflows/ruby.yml
uploadcare-ruby-3.3.1 .github/workflows/ruby.yml
uploadcare-ruby-3.3.0 .github/workflows/ruby.yml
uploadcare-ruby-3.2.0 .github/workflows/ruby.yml
uploadcare-ruby-3.1.1 .github/workflows/ruby.yml
uploadcare-ruby-3.1.0 .github/workflows/ruby.yml
uploadcare-ruby-3.1.0.pre.rc1 .github/workflows/ruby.yml
uploadcare-ruby-3.0.5 .github/workflows/ruby.yml
uploadcare-ruby-3.0.3 .github/workflows/ruby.yml