Skip to content

Commit

Permalink
Create code-quality.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Biggins <sambiggins@gmail.com>
  • Loading branch information
smileynet authored Jun 9, 2023
1 parent 36bd45f commit 43ae22b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Qodana
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- 'releases/*'
- 'milestone-*'

jobs:
qodana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2023.1.1
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
- uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json

0 comments on commit 43ae22b

Please sign in to comment.