Add new RSpec negate matcher not_change #2899
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
on: [push] | |
name: Datadog Static Analysis | |
jobs: | |
static-analysis: | |
runs-on: ubuntu-22.04 | |
name: Datadog Static Analyzer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check code meets quality and security standards | |
id: datadog-static-analysis | |
uses: DataDog/datadog-static-analyzer-github-action@v1 | |
with: | |
dd_api_key: ${{ secrets.DD_API_KEY }} | |
dd_app_key: ${{ secrets.DD_APP_KEY }} | |
dd_service: dd-trace-rb | |
dd_env: ci | |
dd_site: datadoghq.com | |
cpu_count: 2 |