do not execute root NULL check in the beginning of dd_cov_update_cove… #849
Workflow file for this run
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" |