Merge pull request #385 from zendesk/jury.razumau/docker_compose #444
This file contains 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: | |
pull_request: | |
branches: ["master"] | |
push: | |
branches: ["master"] | |
jobs: | |
unit-specs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: | |
- "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: "3.0" | |
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 |