chore: remove unnecessary linter checks #71
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint and Format Check | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
lint-and-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Python Formatting and Linting | |
- name: Install Python dependencies | |
run: | | |
pip install black pylint | |
- name: Run Pylint | |
run: | | |
pylint $(find . -name "*.py") --exit-zero | |
env: | |
PYLINT_SCORE_THRESHOLD: 10.0 # You can implement stricter checks here | |
- name: Run Black | |
run: black --check . |