Skip to content

chore: convert qodana config to new format #12

chore: convert qodana config to new format

chore: convert qodana config to new format #12

Workflow file for this run

# Workflow for testing spoon code quality.
#
# Note that actions are specified by commit hash. This is to avoid the security
# risk of someone injecting malicious code into a release and then simply
# changing a tag.
name: Qodana-Cloud-Scan
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
pull_request:
branches:
- master
permissions:
contents: read
jobs:
qodana:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
checks: write
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@77f0ff0c702065648df9fd0340a48919dca5a1ff # v2023.2.1
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
with:
pr-mode: false
args: --apply-fixes
push-fixes: pull-request