Sha256: 9cc0fe8c12e0a6301c25eabd3ba922f05034677a1ba79a0311b477feda087f99

Contents?: true

Size: 567 Bytes

Versions: 4

Compression:

Stored size: 567 Bytes

Contents

name: Ruby Gem

on:
  - push
  - pull_request

jobs:
  test:
    runs-on: ubuntu-latest
    container: ruby:2.6
    services:
      redis:
        image: redis
        options: >-
          --health-cmd "redis-cli ping"
          --health-interval 10s
          --health-timeout 5s
          --health-retries 5
    steps:
    - uses: actions/checkout@v2
    - name: Bundle
      run: |
        gem install bundler
        bundle install --jobs 4 --retry 3
    - name: Test
      run: |
        bundle exec rake test
      env:
        REDIS_URL: 'redis://redis:6379'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
twitch-bot-6.0.0 .github/workflows/main.yml
twitch-bot-5.0.6 .github/workflows/main.yml
twitch-bot-5.0.5 .github/workflows/main.yml
twitch-bot-5.0.4 .github/workflows/main.yml