Skip to content

Commit

Permalink
workflow: add quality workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fvalette-ledger committed Jul 15, 2024
1 parent 4d1474d commit 1d20159
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-FileCopyrightText: 2024 Ledger SAS
#
# SPDX-License-Identifier: Apache-2.0

name: Python Code Quality

on:
workflow_run:
workflows: [Python Unit Tests]
types: [completed]

jobs:
codeql:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
permissions:
security-events: write
packages: read
actions: read
contents: read
uses: outpost-os/pipeline-python/.github/workflows/codeql.yml@v1

0 comments on commit 1d20159

Please sign in to comment.