Skip to content

Commit 6f70a70

Browse files
committed
Test 29
1 parent a2d24ae commit 6f70a70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continous_integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: get changed files for pull request
2222
if: ${{ github.event_name == 'pull_request' }}
2323
run: |
24-
echo ::set-env name=PYTHON_FILES::$(git diff --name-only --diff-filter=ACMRT origin/${{ github.base_ref }} origin/${{ github.head_ref }})
24+
echo ::set-env name=PYTHON_FILES::$(find . -type f -name "*.py" | xargs git diff --name-only --diff-filter=ACMRT origin/${{ github.base_ref }} origin/${{ github.head_ref }} | awk '{print $1}' | paste -d' ' -s)
2525
- name: print PYTHON_FILES
2626
run: |
2727
echo ${{ env.PYTHON_FILES }}

0 commit comments

Comments
 (0)