Correctly compute final type in MarchHare::Queue#initialize ("x-queue-type" was ignored in favor of :type)
#7
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/*" | |
| - "lib/**" | |
| - "spec/**" | |
| - "Gemfile" | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| services: | |
| rabbitmq: | |
| image: rabbitmq:4-management | |
| ports: | |
| - 5672:5672 | |
| - 15672:15672 | |
| options: --name rabbitmq | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby-version: | |
| - jruby-9.3 | |
| - jruby-9.4 | |
| - jruby-head | |
| 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: Set up RabbitMQ | |
| run: | | |
| until sudo lsof -i:5672; do echo "Waiting for RabbitMQ to start..."; sleep 1; done | |
| ./bin/ci/before_build_docker.sh | |
| - name: Run tests | |
| run: bundle exec rspec spec |