Skip to content

Commit

Permalink
Refactoring still doesnt work tho
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottGibb committed Jun 14, 2024
1 parent 74b347d commit 154f5ac
Show file tree
Hide file tree
Showing 9 changed files with 813 additions and 67 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/Static Analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Run markdownlint
run: |
echo "Running markdownlint"
markdownlint '**/*.md'
markdownlint *.md
YAML_Lint_Check:
name: YAML Lint Check
Expand All @@ -61,3 +61,19 @@ jobs:
run: |
echo "Checking YAML files"
yamllint -c .yamllint.yaml .github/**/**.yaml
yamllint -c .yamllint.yaml docker-compose.yml
Python_Lint_Check:
name: Python Lint Check
runs-on: ubuntu-latest
steps:
- name: Install pylint
run: |
pip install pylint
- name: Checkout code
uses: actions/checkout@v2
- name: Run pylint
run: |
echo "Checking Python files with pylint"
pylint --fail-under=8 ./src

Check failure on line 79 in .github/workflows/Static Analysis.yaml

View workflow job for this annotation

GitHub Actions / YAML Lint Check

79:38 [new-line-at-end-of-file] no new line character at the end of file
Loading

0 comments on commit 154f5ac

Please sign in to comment.