Sha256: 712d006123033c9bd4e1c73af041b42a753a089314709e350ed588c77207a0f5

Contents?: true

Size: 1.36 KB

Versions: 7

Compression:

Stored size: 1.36 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.7
          - 3.0
          - 3.1
          - 3.2

    steps:
    - uses: actions/checkout@v3
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        bundler: 2.4
        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
          - 3.2
    steps:
    - uses: actions/checkout@v3
    - 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

7 entries across 7 versions & 1 rubygems

Version Path
uploadcare-ruby-4.3.6 .github/workflows/ruby.yml
uploadcare-ruby-4.3.5 .github/workflows/ruby.yml
uploadcare-ruby-4.3.4 .github/workflows/ruby.yml
uploadcare-ruby-4.3.3 .github/workflows/ruby.yml
uploadcare-ruby-4.3.2 .github/workflows/ruby.yml
uploadcare-ruby-4.3.1 .github/workflows/ruby.yml
uploadcare-ruby-4.3.0 .github/workflows/ruby.yml