Skip to content

Release 2.11.0.beta1 #405

Release 2.11.0.beta1

Release 2.11.0.beta1 #405

Workflow file for this run

name: CI
on:
pull_request:
branches: ["master"]
push:
branches: ["master"]
jobs:
unit-specs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Build and test with RSpec
run: bundle exec rspec --exclude-pattern='spec/integration/*_spec.rb'
integration-specs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "2.7"
bundler-cache: true
- name: Bring up docker-compose stack
run: docker-compose up -d
- name: Build and test with RSpec
env:
RACECAR_BROKERS: localhost:9092
run: timeout --kill-after 180 150 bundle exec rspec spec/integration/*_spec.rb