attrs/.github/workflows/codeql-analysis.yml

36 lines
619 B
YAML
Raw Normal View History

2023-06-12 05:48:55 +00:00
---
2023-08-15 16:49:04 +00:00
name: CodeQL
2022-09-14 07:20:20 +00:00
on:
schedule:
- cron: "30 22 * * 4"
2022-09-14 07:20:20 +00:00
permissions:
contents: read
2022-09-14 07:20:20 +00:00
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
2023-06-12 05:48:55 +00:00
language: [python]
2022-09-14 07:20:20 +00:00
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3