Check For dead code #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check For dead code | |
on: | |
schedule: | |
# At 09:00 on day 1 of the month, see https://crontab.guru/#0_9_1_*_* | |
- cron: '0 9 1 * *' | |
workflow_dispatch: | |
jobs: | |
dead-code-check: | |
runs-on: [ubuntu-latest] | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: pip | |
- name: create venv and install dependencies | |
run: | | |
rm -r /tmp/kazu-env || true | |
PIP_CACHE_DIR=$(pip cache dir) | |
echo "pip cache dir is "${PIP_CACHE_DIR} | |
python -m venv /tmp/kazu-env | |
. /tmp/kazu-env/bin/activate | |
python -m pip install --upgrade pip | |
pip install --upgrade --upgrade-strategy eager --index-url https://download.pytorch.org/whl/cpu "torch>=2.0.0" | |
pip install -e ."[dev]" --cache-dir $PIP_CACHE_DIR --upgrade --upgrade-strategy eager | |
- name: run vulture | |
run: | | |
. /tmp/kazu-env/bin/activate | |
cd $GITHUB_WORKSPACE | |
git ls-files | vulture |