File tree 1 file changed +24
-1
lines changed
1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
branches : [main]
8
8
jobs :
9
- Explore-GitHub-Actions :
9
+ Explore-Scripts :
10
+
10
11
runs-on : ubuntu-latest
11
12
steps :
12
13
- run : echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
13
14
- run : echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
14
15
- run : echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
16
+
15
17
- name : Check out repository code
16
18
uses : actions/checkout@v4
17
19
- run : echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
18
20
- run : echo "🖥️ The workflow is now ready to test your code on the runner."
21
+
19
22
- name : List files in the repository
20
23
run : |
21
24
ls ${{ github.workspace }}
22
25
- 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