Skip to content

Commit

Permalink
Merge pull request #9 from locp/bugfix/workflow-main
Browse files Browse the repository at this point in the history
fix: dev: We need to run CI on main.
  • Loading branch information
dallinb authored Aug 11, 2022
2 parents 569678b + 7f40f2b commit 23726a0
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 3 deletions.
71 changes: 71 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
---
version: "2" # required to adjust maintainability checks

checks:
argument-count:
enabled: true
config:
threshold: 4
complex-logic:
enabled: true
config:
threshold: 4
file-lines:
enabled: true
config:
threshold: 250
method-complexity:
enabled: true
config:
threshold: 5
method-count:
enabled: true
config:
threshold: 20
method-lines:
enabled: true
config:
threshold: 25
nested-control-flow:
enabled: true
config:
threshold: 4
return-statements:
enabled: true
config:
threshold: 4
similar-code:
enabled: true
config:
threshold: # language-specific defaults. overrides affect all languages.
identical-code:
enabled: true
config:
threshold: # language-specific defaults. overrides affect all languages.

plugins:
markdownlint:
enabled: true
radon:
enabled: true
sonar-python:
enabled: true
config:
tests_patterns:
- tests/**

exclude_patterns:
- "config/"
- "db/"
- "dist/"
- "features/"
- "**/node_modules/"
- "script/"
- "**/spec/"
- "**/test/"
- "**/tests/"
- "Tests/"
- "**/vendor/"
- "**/*_test.go"
- "**/*.d.ts"
- "CHANGELOG.md" # This file is auto-generated.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
push:
branches-ignore:
- 'feature/latest'
- 'main'
pull_request:
branches:
- main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ jobs:
- name: Build
run: echo $GITHUB_EVENT_NAME && make build

- name: Test
run: make test
- name: Make
run: make

0 comments on commit 23726a0

Please sign in to comment.