Sha256: f43c50526b551816239396bbdcc8e64f2727dff693fb193131ede32469923de1
Contents?: true
Size: 882 Bytes
Versions: 2
Compression:
Stored size: 882 Bytes
Contents
name: Ruby on: [push,pull_request] jobs: build: runs-on: ubuntu-latest services: rabbitmq: image: rabbitmq:latest ports: - 5672/tcp # needed because the rabbitmq container does not provide a healthcheck options: >- --health-cmd "rabbitmqctl node_health_check" --health-interval 10s --health-timeout 5s --health-retries 5 strategy: fail-fast: false matrix: ruby: ['2.6', '2.7', '3.0', 'jruby', 'truffleruby'] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Run the default task run: | bundle install bundle exec rake env: TESTOPTS: --exclude=/_tls$/ AMQP_PORT: ${{ job.services.rabbitmq.ports[5672] }}
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
amqp-client-1.1.3 | .github/workflows/main.yml |
amqp-client-1.1.2 | .github/workflows/main.yml |