Document creating a GitHub release when rolling a release #110
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" | |
| pull_request: | |
| branches: | |
| - "main" | |
| jobs: | |
| tests: | |
| name: RabbitMQ ${{ matrix.rabbitmq }}, Ruby ${{ matrix.ruby }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: | |
| - "4.0" | |
| - "3.4" | |
| - "3.3" | |
| - "3.2" | |
| - "3.1" | |
| rabbitmq: | |
| - "4.2" | |
| - "4.1" | |
| - "4.0" | |
| - "3.13" | |
| services: | |
| rabbitmq: | |
| image: rabbitmq:${{ matrix.rabbitmq }}-management | |
| ports: | |
| - 5672:5672 | |
| - 15672:15672 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up Ruby ${{ matrix.ruby }} | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Wait for RabbitMQ to start | |
| run: sleep 10 | |
| - name: Run tests | |
| run: bundle exec rake |