From 74775721612069538eecd34cc438d30b06b77351 Mon Sep 17 00:00:00 2001 From: ldevillez Date: Sat, 11 May 2024 20:38:02 +0200 Subject: [PATCH] TEST echo --- .github/workflows/tests.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index adea893..8892e97 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,9 +18,18 @@ jobs: files: | **.py #fetch_depth: 0 + - name: List all changed files markdown files + env: + BOOL: ${{ steps.changed-python.test_any_changed }} + ALL_CHANGED_FILES: ${{ steps.changed-python.outputs.all_changed_files }} + run: | + echo "${BOOL} was changed" + for file in ${ALL_CHANGED_FILES}; do + echo "$file was changed" + done - name: Set up Python all python version - if: steps.changed-files.outputs.test_any_changed == 'true' + if: steps.changed-python.outputs.test_any_changed == 'true' uses: actions/setup-python@v3 with: python-version: 3.9