Skip to content

Commit

Permalink
More formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottGibb committed Nov 5, 2023
1 parent fbae6e4 commit 93e4a9f
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 53 deletions.
104 changes: 52 additions & 52 deletions .github/workflows/Static Analysis.yaml
Original file line number Diff line number Diff line change
@@ -1,61 +1,61 @@
---
# This is the Static Analysis workflow, in which we check the code for errors and warnings.
name: Static Analysis
name: Static Analysis

on: [push]
on: [push]


jobs:
jobs:

# Shell_Check:
# name: Shell Check
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Install Dependencies
# run: sudo apt-get install -y shellcheck
# - name: Shell Check
# run: |
# echo "Checking shell scripts"
# shellcheck **/*.sh
# Shell_Check:
# name: Shell Check
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v2
# - name: Install Dependencies
# run: sudo apt-get install -y shellcheck
# - name: Shell Check
# run: |
# echo "Checking shell scripts"
# shellcheck **/*.sh

Markdown_Lint_Check:
name: Markdown Lint Check
runs-on: ubuntu-latest
steps:
- name: Install markdownlint-cli
run: npm install -g markdownlint-cli
- name: Checkout code
uses: actions/checkout@v2
- name: Run markdownlint
run: |
echo "Checking Markdown files"
markdownlint '**/*.md'
Markdown_Lint_Check:
name: Markdown Lint Check
runs-on: ubuntu-latest
steps:
- name: Install markdownlint-cli
run: npm install -g markdownlint-cli
- name: Checkout code
uses: actions/checkout@v2
- name: Run markdownlint
run: |
echo "Checking Markdown files"
markdownlint '**/*.md'
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=9 **/**/*.py
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=9 **/**/*.py
YAML_Lint_Check:
name: YAML Lint Check
runs-on: ubuntu-latest
steps:
- name: Install yamllint
run: sudo apt install yamllint
- name: Checkout code
uses: actions/checkout@v2
- name: Run yamllint
run: |
echo "Checking YAML files"
yamllint -c .yamllint.yaml .github/**/**.yaml
YAML_Lint_Check:
name: YAML Lint Check
runs-on: ubuntu-latest
steps:
- name: Install yamllint
run: sudo apt install yamllint
- name: Checkout code
uses: actions/checkout@v2
- name: Run yamllint
run: |
echo "Checking YAML files"
yamllint -c .yamllint.yaml .github/**/**.yaml
2 changes: 1 addition & 1 deletion IMPROVEMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
This markdown file contains a list of improvements that can be made to the project:

- Gather all frequencies for the EasyOn Easy Off plugs so that the full range of plugs can be used
- Come up with better ways of storing the bit strings for the activation signals
- Come up with better ways of storing the bit strings for the activation signals

0 comments on commit 93e4a9f

Please sign in to comment.