diff options
Diffstat (limited to '.github/workflows/codeql.yml')
| -rw-r--r-- | .github/workflows/codeql.yml | 37 | 
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..33bb0f1 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,37 @@ +name: "CodeQL" + +on: +  push: +    branches: [ "main" ] +  pull_request: +    branches: [ "main" ] +  schedule: +    - cron: '34 6 * * 3' + +jobs: +  analyze: +    name: Analyze Code +    runs-on: ubuntu-latest +    permissions: +      actions: read +      contents: read +      security-events: write + +    strategy: +      fail-fast: false +      matrix: +        language: [ 'python' ] + +    steps: +    - name: Checkout 🛎️ +      uses: actions/checkout@v3 + +    - name: Initialize CodeQL 🍱 +      uses: github/codeql-action/init@v2 +      with: +        languages: ${{ matrix.language }} + +    - name: Perform CodeQL Analysis 🚀 +      uses: github/codeql-action/analyze@v2 +      with: +        category: "/language:${{matrix.language}}"  | 
