Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

Commit

Permalink
Make it fail
Browse files Browse the repository at this point in the history
  • Loading branch information
gharbat committed Dec 5, 2023
1 parent b825cd6 commit cf958e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Lint Code Base
name: Lint Python Code Base

on: [push, pull_request]
on: [pull_request]

jobs:
build:
Expand All @@ -24,5 +24,5 @@ jobs:
- name: Lint with flake8
run: |
pip install flake8
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
flake8 llm-server/ --count --select=E9,F63,F7,F82 --show-source --statistics

0 comments on commit cf958e7

Please sign in to comment.