File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change 66 pull_request :
77 branches : [main]
88jobs :
9- Explore-GitHub-Actions :
9+ Explore-Scripts :
10+
1011 runs-on : ubuntu-latest
1112 steps :
1213 - run : echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
1314 - run : echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
1415 - run : echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
16+
1517 - name : Check out repository code
1618 uses : actions/checkout@v4
1719 - run : echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
1820 - run : echo "🖥️ The workflow is now ready to test your code on the runner."
21+
1922 - name : List files in the repository
2023 run : |
2124 ls ${{ github.workspace }}
2225 - run : echo "🍏 This job's status is ${{ job.status }}."
26+
27+
28+ - name : List files in DescriptiveStatistics
29+ run : |
30+ TARGET_FOLDER="${{ github.workspace }}/DescriptiveStatistics"
31+ find $TARGET_FOLDER -type f -name "*.py"
32+ - run : echo "🍏 This job's status is ${{ job.status }}."
33+
34+ - name : List files in NumpyPractice
35+ run : |
36+ TARGET_FOLDER="${{ github.workspace }}/NumpyPractice"
37+ find $TARGET_FOLDER -type f -name "*.py"
38+ - run : echo "🍏 This job's status is ${{ job.status }}."
39+
40+ - name : List files in PandasPractice
41+ run : |
42+ TARGET_FOLDER="${{ github.workspace }}/PandasPractice"
43+ find $TARGET_FOLDER -type f -name "*.py"
44+ - run : echo "🍏 This job's status is ${{ job.status }}."
45+
You can’t perform that action at this time.
0 commit comments