Merge pull request #252 from DataDog/anmarchenko/decouple_patcher_fro… #1327
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: 'Integration test run' | |
on: | |
# Build each branch for testing | |
push: | |
jobs: | |
build_and_run_integration_test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby_image: | |
- ruby:3.0 | |
- ruby:3.1 | |
- ruby:3.2 | |
steps: | |
- name: Checkout datadog-ci | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Run test | |
working-directory: integration/app | |
run: | | |
BASE_IMAGE=${{matrix.ruby_image}} docker compose run --rm --no-deps app "bundle install && bundle exec rake test" |