Skip to content

Commit

Permalink
Update codeQL.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
safaie authored Jul 31, 2024
1 parent e497752 commit 888dfb5
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/codeQL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,21 @@ jobs:
actions: read
contents: read

strategy:
fail-fast: false
matrix:
language: [ 'javascript', 'python' ]

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"

0 comments on commit 888dfb5

Please sign in to comment.