Sha256: d897947db3d1fdec88bb0b3d24521144f4f112fa77d9868793d71f8495aeb00d
Contents?: true
Size: 685 Bytes
Versions: 6
Compression:
Stored size: 685 Bytes
Contents
name: Ruby on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['2.6'] services: rabbitmq: image: rabbitmq ports: - 5672:5672 options: --health-cmd "rabbitmqctl node_health_check" --health-interval 10s --health-timeout 5s --health-retries 5 steps: - uses: actions/checkout@v2 with: submodules: true - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - name: Run lint & tests run: bundle exec rake
Version data entries
6 entries across 6 versions & 1 rubygems