Skip to content

Commit

Permalink
ci: add dead code detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas1312 committed Oct 10, 2023
1 parent 3aae35f commit 671aa63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ jobs:
pip install -e ".[dev]"
- name: Find dead code with vulture
run: vulture src/kili tests > dead_code.log || true
run: vulture src/kili tests 2>&1 | tee dead_code.log

- name: Find dead code with dead
run: dead >> dead_code.log || true
run: dead 2>&1 | tee -a dead_code.log

- name: Log dead code
run: >-
Expand Down

0 comments on commit 671aa63

Please sign in to comment.