CLDSRV-918: raise SDK request timeout in functional test client #4189
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
| --- | |
| name: codeQL | |
| on: | |
| push: | |
| branches: [development/*, hotfix/*] | |
| pull_request: | |
| branches: [development/*, hotfix/*] | |
| workflow_dispatch: | |
| jobs: | |
| analyze: | |
| name: Static analysis with CodeQL | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| with: | |
| languages: javascript, python, ruby | |
| queries: security-extended,./.github/codeql/async-suite.qls | |
| - name: Build and analyze | |
| uses: github/codeql-action/analyze@v3 |