Merge pull request #7866 from opengisch/cloudProperty #7775
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: [ "master", "release-*" ] | |
| pull_request: | |
| branches: [ "master", "release-*" ] | |
| schedule: | |
| - cron: '45 16 * * 3' | |
| jobs: | |
| code-ql: | |
| name: Analyze | |
| runs-on: 'ubuntu-latest' | |
| timeout-minutes: 360 | |
| permissions: | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: | |
| # - 'c-cpp' # Tested as part of the linux builds | |
| - 'python' | |
| - 'ruby' | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7.0.1 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4.37.5 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@v4.37.5 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4.37.5 | |
| with: | |
| category: "/language:${{matrix.language}}" |