diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..3a02205 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,42 @@ +--- + +name: 'CodeQL' + +on: + push: + branches: ['latest'] + paths: + - '**.py' + - '.github/workflows/codeql.yml' + pull_request: + branches: ['latest'] + paths: + - '**.py' + - '.github/workflows/codeql.yml' + +jobs: + analyze: + name: Analyze + runs-on: 'ubuntu-latest' + timeout-minutes: 180 + permissions: + security-events: write + actions: read + contents: read + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: 'python' + + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: '/language:python'