We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c930c96 commit 9e4aa55Copy full SHA for 9e4aa55
.github/workflows/main.yml
@@ -7,6 +7,24 @@ on:
7
branches: [ master ]
8
9
jobs:
10
+ check-quality:
11
+ runs-on: ubuntu-latest
12
+ name: A job to check my code quality
13
+ steps:
14
+ - name: Check code meets quality standards
15
+ id: code-inspector
16
+ uses: codeinspectorio/github-action@master
17
+ with:
18
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
19
+ code_inspector_access_key: ${{ secrets.CODE_INSPECTOR_ACCESS_KEY }}
20
+ code_inspector_secret_key: ${{ secrets.CODE_INSPECTOR_SECRET_KEY }}
21
+ min_quality_grade: 'NEUTRAL'
22
+ min_quality_score: '50'
23
+ max_defects_rate: '0.0001'
24
+ max_complex_functions_rate: '0.5'
25
+ max_long_functions_rate: '0.5'
26
+ project_name: ''
27
+ max_timeout_sec: '600'
28
check-java-style:
29
runs-on: ubuntu-latest
30
0 commit comments