Skip to content

Commit

Permalink
Update github-actions-demo.yml
Browse files Browse the repository at this point in the history
extend exploring remaining directories
  • Loading branch information
PapyrusNotes authored Jan 5, 2025
1 parent 1b3e8c1 commit 93b3723
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,20 @@ jobs:
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."

- name: List files in the repository
- name: List files in DescriptiveStatistics
run: |
TARGET_FOLDER="${{ github.workspace }}/DescriptiveStatistics"
find $TARGET_FOLDER -type f -name "*.py"
- run: echo "🍏 This job's status is ${{ job.status }}."

- name: List files in NumpyPractice
run: |
TARGET_FOLDER="${{ github.workspace }}/NumpyPractice"
find $TARGET_FOLDER -type f -name "*.py"
- run: echo "🍏 This job's status is ${{ job.status }}."

- name: List files in PandasPractice
run: |
TARGET_FOLDER="${{ github.workspace }}/PandasPractice"
find $TARGET_FOLDER -type f -name "*.py"
- run: echo "🍏 This job's status is ${{ job.status }}."

0 comments on commit 93b3723

Please sign in to comment.