Skip to content

drop support for datadog-lambda v1 #347

drop support for datadog-lambda v1

drop support for datadog-lambda v1 #347

Workflow file for this run

name: RSpec
on:
pull_request:
push:
jobs:
RSpec:
name: >-
Ruby ${{ matrix.ruby }}, ${{ matrix.gems }}
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.2"
- "3.3"
gems:
- >-
datadog_lambda='~> 2.22'
ddtrace='~> 1.18'
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- uses: amancevice/setup-code-climate@v1
with:
cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }}
- run: cc-test-reporter before-build
- run: erb ${{ matrix.gems }} .github/workflows/Gemfile.erb > Gemfile
- run: bundle install
- run: bundle exec rake
- run: cc-test-reporter after-build
if: ${{ github.event_name != 'pull_request' }}