Skip to content

Commit

Permalink
adding updated static analysis and markdown fixes
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 12eaa49 commit 9432cd9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/Static Analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,17 @@
- name: Run yamllint
run: |
echo "Checking YAML files"
yamllint -c .yamllint.yaml .github/**/**.yaml
yamllint -c .yamllint.yaml .github/**/**.yml
yamllint -c .yamllint.yaml **/**/**.yml

Check failure on line 47 in .github/workflows/Static Analysis.yml

View workflow job for this annotation

GitHub Actions / YAML Lint Check

47:1 [trailing-spaces] trailing spaces
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
run: |

Check failure on line 53 in .github/workflows/Static Analysis.yml

View workflow job for this annotation

GitHub Actions / YAML Lint Check

53:18 [colons] too many spaces after colon
pip install pylint
- name: Run Pylint
run: pylint --fail-under=4 **/*.py
run: |

Check failure on line 56 in .github/workflows/Static Analysis.yml

View workflow job for this annotation

GitHub Actions / YAML Lint Check

56:18 [colons] too many spaces after colon
echo "Checking source files with pylint"
pylint --fail-under=4 **/*.py

Check failure on line 58 in .github/workflows/Static Analysis.yml

View workflow job for this annotation

GitHub Actions / YAML Lint Check

58:48 [new-line-at-end-of-file] no new line character at the end of file
File renamed without changes.
2 changes: 1 addition & 1 deletion ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

## Summary

## Project Structure
## Project Structure

0 comments on commit 9432cd9

Please sign in to comment.