Sha256: 21883755e766f9aa17a562b77ef34b9dbbd1348a1b2b5ed7e7f1c6f334731b45

Contents?: true

Size: 895 Bytes

Versions: 4

Compression:

Stored size: 895 Bytes

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:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.7', '3.0']

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    - name: Run tests
      run: bundle exec rspec

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
download_tv-2.9.1 .github/workflows/ruby.yml
download_tv-2.9.0 .github/workflows/ruby.yml
download_tv-2.8.5 .github/workflows/ruby.yml
download_tv-2.8.4 .github/workflows/ruby.yml