Create code_quality.yml

This commit is contained in:
Viktor 2022-12-05 15:59:26 +01:00 committed by GitHub
parent badcce14f8
commit ee09e39af6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
.github/workflows/code_quality.yml vendored Normal file
View file

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