Skip to content

Commit

Permalink
feat: add Python linter and code formating checks to the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mexes20 committed Sep 11, 2024
1 parent 2cbd807 commit c0035a6
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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/

0 comments on commit c0035a6

Please sign in to comment.