diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-02-12 18:12:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-12 18:12:17 +0100 |
commit | 2b1c07a1d435b541c295afad13227ebb10def57e (patch) | |
tree | f0cbcba2a380e8100682e0f8d46f7a75d42f716c | |
parent | 477d4bbf5f01e5c001a887ed6842e56b5341e976 (diff) | |
download | rneovim-2b1c07a1d435b541c295afad13227ebb10def57e.tar.gz rneovim-2b1c07a1d435b541c295afad13227ebb10def57e.tar.bz2 rneovim-2b1c07a1d435b541c295afad13227ebb10def57e.zip |
ci: remove unnecessary matrix from codeql workflow (#22239)
-rw-r--r-- | .github/workflows/codeql.yml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 7cdaab4f11..657ace20fd 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,11 +13,6 @@ jobs: contents: read security-events: write - strategy: - fail-fast: false - matrix: - language: [ 'cpp' ] - steps: - name: Checkout repository uses: actions/checkout@v3 @@ -28,10 +23,9 @@ jobs: - name: Initialize CodeQL uses: github/codeql-action/init@v2 with: - languages: ${{ matrix.language }} + languages: cpp - - if: matrix.language == 'cpp' - run: make + - run: make - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 |