From a593715eb85d3bae0314f8eb85ae9706e2e557db Mon Sep 17 00:00:00 2001 From: Hans5958 Date: Sat, 18 Mar 2023 00:37:26 +0700 Subject: [PATCH] Create names on Qodana workflow --- .github/workflows/qodana.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/qodana.yml b/.github/workflows/qodana.yml index e2d61893..f3e70751 100644 --- a/.github/workflows/qodana.yml +++ b/.github/workflows/qodana.yml @@ -8,16 +8,19 @@ on: jobs: qodana: + name: Qodana runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Checkout code + uses: actions/checkout@v3 with: fetch-depth: 0 - - name: 'Qodana Scan' + - name: Check using Qodana uses: JetBrains/qodana-action@main env: QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} - - uses: github/codeql-action/upload-sarif@v2 + - name: Upload results + uses: github/codeql-action/upload-sarif@v2 with: sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json env: