Skip to content

Commit

Permalink
Addng more linters and test D
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Gibb authored and Scott Gibb committed Nov 18, 2023
1 parent 245a2b3 commit b02558b
Show file tree
Hide file tree
Showing 6 changed files with 721 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/Static Analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,14 @@
run: |
echo "Checking YAML files"
yamllint -c .yamllint.yaml .github/**/**.yaml
yamllint -c .yamllint.yaml **/**/**.yml
yamllint -c .yamllint.yaml **/**/**.yml
Python_Lint_Check:
name: Python Lint Check
runs-on: ubuntu-latest
steps:
- name: Install pylint
run: sudo apt-get install pip -y
pip install pylint
- name: Run Pylint
run: pylint --fail-under=4 **/*.py
7 changes: 7 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"line-length": {
"line_length": 800,
"code_blocks": false,
"tables": true
}
}
Loading

0 comments on commit b02558b

Please sign in to comment.