-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👷 Move code quality checks to separate workflow and add codeQL
- Loading branch information
Showing
2 changed files
with
37 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# For most projects, this workflow file will not need changing; you simply need | ||
# to commit it to your repository. | ||
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
name: Code quality checks | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- '**.py' | ||
- '**.yml' | ||
pull_request: | ||
paths: | ||
- '**.py' | ||
- '**.yml' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
open-api-workflow-code-quality: | ||
uses: maykinmedia/open-api-workflows/.github/workflows/code-quality.yml@v1 | ||
with: | ||
python-version: '3.11' | ||
node-version: '18' | ||
|
||
django-settings-module: 'openklant.conf.ci' | ||
django-secret-key: dummy |
This file contains 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