fix : added support for multiple values for CONTAIN, START_WITH and E… #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Qodana | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
qodana: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: acryldata/sane-checkout-action@v3 | |
- name: "Qodana Scan" | |
uses: JetBrains/[email protected] | |
- uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json | |
cache-default-branch-only: true |