[Test Optimization] Add support for MSTest 3.9.x (#7070) #12865
This file contains hidden or 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
# Based on https://app.datadoghq.com/ci/setup/static-analysis?provider=github | |
on: [push] | |
jobs: | |
check-quality: | |
if: github.actor != 'dependabot[bot]' # secrets are not available to dependabot | |
runs-on: ubuntu-latest | |
name: Datadog Static Analyzer | |
permissions: | |
actions: read # read secrets | |
contents: read | |
statuses: write # add status checks (?) | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Check code meets quality 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_site: datadoghq.com | |
cpu_count: 2 | |