mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-05-04 18:09:54 +08:00
48 lines
1.5 KiB
YAML
48 lines
1.5 KiB
YAML
#
|
||
# 开源代码,仅供学习和交流研究使用,商用请联系三丙
|
||
# 微信:mohan_88888
|
||
# 抖音:程序员三丙
|
||
# 付费课程知识星球:https://t.zsxq.com/aKtXo
|
||
#
|
||
|
||
#-------------------------------------------------------------------------------#
|
||
# Discover additional configuration options in our documentation #
|
||
# https://www.jetbrains.com/help/qodana/github.html #
|
||
#-------------------------------------------------------------------------------#
|
||
|
||
name: Qodana
|
||
on:
|
||
workflow_dispatch:
|
||
pull_request:
|
||
push:
|
||
branches:
|
||
- master
|
||
- Feat_web_ui
|
||
|
||
jobs:
|
||
qodana:
|
||
runs-on: ubuntu-latest
|
||
permissions:
|
||
contents: write
|
||
pull-requests: write
|
||
checks: write
|
||
steps:
|
||
- uses: actions/checkout@v4
|
||
with:
|
||
ref: ${{ github.event.pull_request.head.sha }}
|
||
fetch-depth: 0
|
||
- name: 'Qodana Scan'
|
||
uses: JetBrains/qodana-action@v2025.2
|
||
env:
|
||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
||
with:
|
||
args: --baseline,qodana.sarif.json
|
||
# In pr-mode: 'true' Qodana checks only changed files
|
||
pr-mode: false
|
||
use-caches: true
|
||
post-pr-comment: true
|
||
use-annotations: true
|
||
# Upload Qodana results (SARIF, other artifacts, logs) as an artifact to the job
|
||
upload-result: false
|
||
# quick-fixes available in Ultimate and Ultimate Plus plans
|
||
push-fixes: 'none' |