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

- name: Log dead code
- name: Filter dead code
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
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
- name: Crash if dead code found
run: |
Expand Down

0 comments on commit e21cded

Please sign in to comment.