Skip to content

chore(deps): update coverage requirement from <8.0.0,>=7.15.4 to >=7.16.0,<8.0.0 #152

chore(deps): update coverage requirement from <8.0.0,>=7.15.4 to >=7.16.0,<8.0.0

chore(deps): update coverage requirement from <8.0.0,>=7.15.4 to >=7.16.0,<8.0.0 #152

Workflow file for this run

name: Lint
on:
pull_request:
branches: [ main ]
merge_group:
branches: [ main ]
jobs:
lint:
runs-on: macos-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 mypy
- name: Lint with flake8
run: |
# Stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# Exit-zero treats all errors as warnings
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Type check with mypy
run: |
mypy main.py cli.py controller.py config.py constants.py models.py network.py utils.py validators.py keychain.py lsdp.py --ignore-missing-imports