Sha256: 558582aa3795e2dc79121c0d64270dbcce64ffd5cc3c8b864b6f8514f25ab9a9

Contents?: true

Size: 597 Bytes

Versions: 2

Compression:

Stored size: 597 Bytes

Contents

name: Ruby

on: [push,pull_request]

jobs:
  container-job:
    runs-on: ubuntu-latest
    container: ruby:latest
    services:
      redis:
        image: redis
      pushgateway:
        image: prom/pushgateway

    steps:
    - uses: actions/checkout@v2
    - name: Run the default task
      run: |
        gem install bundler -v 2.2.3
        bundle install
        bundle exec rake
      env:
          # The hostname used to communicate with the Redis service container
          REDIS_HOST: redis
          REDIS_PORT: 6379
          PROM_PG_PORT: 9091
          PROM_PG_HOST: pushgateway

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sc4ry-0.2.1 .github/workflows/main.yml
sc4ry-0.2.0 .github/workflows/main.yml