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 671aa63 commit 889239e
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,21 +177,14 @@ jobs:
run: dead 2>&1 | tee -a dead_code.log

- name: Log dead code
run: >-
cat dead_code.log |
grep -e "src/kili" |
grep -v
-e "is only referenced in tests"
-e "_ is never read"
-e "internal.py"
-e "unused attribute 'internal'"
-e "affected_rows"
-e "src/kili/orm"
-e "src/kili/types.py"
-e "src/kili/services"
-e "src/kili/entrypoints"
-e "src/kili/core/graphql/ws_graphql_client"
> dead_code_filtered.log
run: |
cat dead_code.log
- name: Log dead code
run: |
cat dead_code.log | grep -e "src/kili"
- name: Log dead code
run: |
cat dead_code.log | grep -e "src/kili" > dead_code_filtered.log
- name: Crash if dead code found
run: |
Expand Down

0 comments on commit 889239e

Please sign in to comment.