From aad85da9b6cde631d0551c9a22cb4f6d8d306f12 Mon Sep 17 00:00:00 2001 From: lpm0073 Date: Fri, 17 Nov 2023 14:38:40 -0600 Subject: [PATCH] chore: echo site-packages local path to console --- .github/actions/tests/python/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/tests/python/action.yml b/.github/actions/tests/python/action.yml index 6c5b24d2..c1dd1804 100644 --- a/.github/actions/tests/python/action.yml +++ b/.github/actions/tests/python/action.yml @@ -74,6 +74,11 @@ runs: with: python-version: ${{ inputs.python-version }} + - name: print site-packages path + shell: bash + run: | + echo $(python -c "import site; print(site.getsitepackages())") + - name: Install dependencies shell: bash run: |