feat(ci): add Qodana scan workflow

This commit is contained in:
Harsh Shandilya 2022-12-09 16:08:01 +05:30
parent db75d1edfe
commit 9b25cd0fea
No known key found for this signature in database
1 changed files with 19 additions and 0 deletions

19
.github/workflows/qodana_scan.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Qodana
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
qodana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2022.2.3
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}