diff options
| author | Laura <[email protected]> | 2022-12-29 13:14:35 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-29 13:14:35 -0800 |
| commit | 995dd623433e1edac83bc80f812ec33d30d967cf (patch) | |
| tree | cea52251b60f874effbaa3134a7884692c4f3c98 /.github/workflows/CodeQL-Analysis | |
| parent | e582f2a3b158adc2d254100666e4ff8ec583f28c (diff) | |
| parent | 85444c82b289545bbdb0c9a64e50ec68ae9e49c3 (diff) | |
Merge pull request #820 from microsoft/lauragonzalezzz/remove-redundant-workflow
Deletes CodeQL-Analysis Workflow
Diffstat (limited to '.github/workflows/CodeQL-Analysis')
| -rw-r--r-- | .github/workflows/CodeQL-Analysis | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/.github/workflows/CodeQL-Analysis b/.github/workflows/CodeQL-Analysis deleted file mode 100644 index a70cf750..00000000 --- a/.github/workflows/CodeQL-Analysis +++ /dev/null @@ -1,70 +0,0 @@ -# This workflow runs the latest CodeQL CLI and checks against CodeQL's Cpp library. -# It will only analyze solutions which have been changed. - -name: "CodeQL Analysis" - -on: - push: - branches: - - main - - develop - pull_request: - # The branches below must be a subset of the branches above - branches: - - main - - develop - - # Do not perform analysis if only config or text files are changed - paths-ignore: - - '**/*.md' - - '**/*.txt' - - './.github/**' - - # Allow manual scheduling - workflow_dispatch: - -jobs: - analyze: - name: Analysis - runs-on: windows-latest - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: [ 'cpp' ] - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Initialize CodeQL - uses: github/codeql-action/init@v2 - with: - languages: ${{ matrix.language }} - - - name: Add MSBuild to PATH - uses: microsoft/[email protected] - - - name: Get changed files - id: get-changed-files - uses: tj-actions/changed-files@v27 - - - name: Retrieve and build solutions from changed files - id: build-changed-projects - run: | - $changedFiles = "${{ steps.get-changed-files.outputs.all_changed_files }}".Split(' ') - .\.github\scripts\Build-ChangedProjects.ps1 -ChangedFiles $changedFiles - env: - Configuration: ${{ matrix.configuration }} - Platform: ${{ matrix.platform }} - - - name: Perform CodeQL analysis - uses: github/codeql-action/analyze@v2 - with: - category: "/language:${{matrix.language}}" |
