1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-10-16 15:17:25 +00:00
sophon/.github/workflows/analyze-codeql-backend.yml

28 lines
637 B
YAML

name: "Analyze backend using CodeQL"
on:
push:
branches: [ main ]
paths:
- "backend/**"
pull_request:
branches: [ main ]
paths:
- "backend/**"
workflow_dispatch:
jobs:
analyze:
name: "Analyze backend"
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: "python"
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1