Skip to content

Commit

Permalink
Update Qodana GitHub action's project directory argument path
Browse files Browse the repository at this point in the history
In the GitHub workflow configuration for Qodana, the file path given in the arguments for the 'Qodana Scan' step was updated. It changed from relative format ("src") to an absolute one (./src). This was done to help keep the path reference unambiguous across different environments or use-cases.
  • Loading branch information
christianhelle committed Oct 26, 2023
1 parent 3e58239 commit df5d2a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/qodana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2023.2
with:
args: --project-dir "src"
args: --project-dir ./src
push-fixes: pull-request
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}

0 comments on commit df5d2a1

Please sign in to comment.