Skip to content

Document creating a GitHub release when rolling a release #110

Document creating a GitHub release when rolling a release

Document creating a GitHub release when rolling a release #110

Workflow file for this run

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