Skip to content

Commit

Permalink
Update ci-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mario-winkler authored Oct 17, 2024
1 parent e2616a6 commit bd0673e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black
pip install flake8 black pytest requests
- name: Analysing the code with flake8
run: |
flake8 --max-line-length 120 --count --statistics .
- name: Check code format with black
run: |
black --check --diff --color .
- name: Run tests
run: |
pytest

0 comments on commit bd0673e

Please sign in to comment.