Skip to content

Commit 93b3723

Browse files
authored
Update github-actions-demo.yml
extend exploring remaining directories
1 parent 1b3e8c1 commit 93b3723

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/github-actions-demo.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,20 @@ jobs:
2323
ls ${{ github.workspace }}
2424
- run: echo "🍏 This job's status is ${{ job.status }}."
2525

26-
- name: List files in the repository
26+
- name: List files in DescriptiveStatistics
2727
run: |
2828
TARGET_FOLDER="${{ github.workspace }}/DescriptiveStatistics"
2929
find $TARGET_FOLDER -type f -name "*.py"
3030
- run: echo "🍏 This job's status is ${{ job.status }}."
31+
32+
- name: List files in NumpyPractice
33+
run: |
34+
TARGET_FOLDER="${{ github.workspace }}/NumpyPractice"
35+
find $TARGET_FOLDER -type f -name "*.py"
36+
- run: echo "🍏 This job's status is ${{ job.status }}."
37+
38+
- name: List files in PandasPractice
39+
run: |
40+
TARGET_FOLDER="${{ github.workspace }}/PandasPractice"
41+
find $TARGET_FOLDER -type f -name "*.py"
42+
- run: echo "🍏 This job's status is ${{ job.status }}."

0 commit comments

Comments
 (0)