mirror of
https://github.com/spf13/cobra
synced 2025-05-05 04:47:22 +00:00
Create code_quality.yml
This commit is contained in:
parent
badcce14f8
commit
ee09e39af6
1 changed files with 20 additions and 0 deletions
20
.github/workflows/code_quality.yml
vendored
Normal file
20
.github/workflows/code_quality.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
name: Qodana
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- 'releases/*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
qodana:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: 'Qodana Scan'
|
||||||
|
uses: JetBrains/qodana-action@v2022.2.4
|
||||||
|
env:
|
||||||
|
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
|
Loading…
Add table
Reference in a new issue