From 16123b813303af39a7047a195f661075c8e32c71 Mon Sep 17 00:00:00 2001 From: trydofor Date: Tue, 6 Feb 2024 17:06:38 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20try=20qodana.yml=20#204?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/qodana.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/qodana.yml diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml new file mode 100644 index 00000000..4822eeb0 --- /dev/null +++ b/.github/workflows/qodana.yml @@ -0,0 +1,20 @@ +name: Qodana +on: + workflow_dispatch: + push: + branches: + - 'main' + +jobs: + qodana: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + checks: write + steps: + - uses: actions/checkout@v4 + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@v2023.3 + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} \ No newline at end of file