From b254d64b4fd9650a92ea672f248371429f43ce5b Mon Sep 17 00:00:00 2001 From: Yonokid <37304577+Yonokid@users.noreply.github.com> Date: Thu, 12 Jun 2025 14:37:59 -0400 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 93e57af..7f12429 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,9 +42,9 @@ jobs: echo "=== Contents of libs/song_hash.py ===" cat libs/song_hash.py | head -20 echo "=== Searching for pandas ===" - grep -n "pandas" . -r --exclude-dir=.git || echo "No pandas found" + grep -n "pandas" . -r --exclude-dir=.git echo "=== Python files with imports ===" - find . -name "*.py" -exec grep -l "import pandas\|from pandas" {} \; || echo "No pandas imports found" + find . -name "*.py" -exec grep -l "import pandas\|from pandas" {} \; - name: Build Executable run: | uv run nuitka --mode=app --remove-output --output-dir=. --include-module=raylib,moviepy,numpy,sounddevice,soundfile,tomlkit --noinclude-setuptools-mode=nofollow --noinclude-IPython-mode=nofollow PyTaiko.py