Skip to content

Add new contributors @JoE11-y @Groxan @hwildwood (#213) #10

Add new contributors @JoE11-y @Groxan @hwildwood (#213)

Add new contributors @JoE11-y @Groxan @hwildwood (#213) #10

Workflow file for this run

name: Python Lint and Formatting Check
on: [push, pull_request]
jobs:
lint:
name: Lint and Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black
- name: Lint with flake8
run: |
flake8 scripts/ --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 scripts/ --count --exit-zero --max-complexity=10 --max-line-length=88 --statistics
- name: Check code formatting with black
run: |
black --check scripts/