hmmm
This commit is contained in:
parent
8dd91565ac
commit
3e62f11af8
21
.github/workflows/codeinspector.yml
vendored
Normal file
21
.github/workflows/codeinspector.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check-quality:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: A job to check my code quality
|
||||||
|
steps:
|
||||||
|
- name: Check code meets quality standards
|
||||||
|
id: code-inspector
|
||||||
|
uses: codeinspectorio/github-action@master
|
||||||
|
with:
|
||||||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
code_inspector_access_key: ${{ secrets.CODE_INSPECTOR_ACCESS_KEY }}
|
||||||
|
code_inspector_secret_key: ${{ secrets.CODE_INSPECTOR_SECRET_KEY }}
|
||||||
|
min_quality_grade: 'WARNING'
|
||||||
|
min_quality_score: '50'
|
||||||
|
max_defects_rate: '0.0001'
|
||||||
|
max_complex_functions_rate: '0.0001'
|
||||||
|
max_long_functions_rate: '0.0001'
|
||||||
|
project_name: ''
|
||||||
|
max_timeout_sec: '600'
|
Loading…
x
Reference in New Issue
Block a user