From 199e608e12834fe14286b409174568e27d6b27ad Mon Sep 17 00:00:00 2001 From: Shyim Date: Thu, 14 Sep 2023 14:50:08 +0200 Subject: [PATCH] Create qodana.yaml --- .github/workflows/qodana.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/qodana.yaml diff --git a/.github/workflows/qodana.yaml b/.github/workflows/qodana.yaml new file mode 100644 index 0000000..3371db3 --- /dev/null +++ b/.github/workflows/qodana.yaml @@ -0,0 +1,18 @@ +name: Qodana +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * *' + +jobs: + qodana: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@main + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}