ci: deploy the docs when the theme or the landing page changes #230
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CodeQL | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '15 3 * * 0' | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| jobs: | |
| analyze: | |
| name: Analyze (python) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4.37.7 | |
| with: | |
| languages: python | |
| queries: +security-extended | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@v4.37.7 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4.37.7 | |
| continue-on-error: true | |
| with: | |
| category: /language:python |