* Dockerfile refactoring * Update docker-image.yml * Update CodeQL workflow to match Steffo99/.github * Add testing workflow using `compileall` * Use release workflow from Steffo99/.github * Slightly refactor Dockerfile * Fix merge tool doing something weird --------- Co-authored-by: Stefano Pigozzi <me@steffo.eu>
16 lines
320 B
YAML
16 lines
320 B
YAML
name: "Periodic quality and security analysis"
|
|
|
|
on:
|
|
# Every monday at 09:48 UTC
|
|
schedule:
|
|
- cron: "48 9 * * 1"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
codeql:
|
|
uses: Steffo99/.github/.github/workflows/quality-python-codeql.yml@main
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|