Skip to content

Commit 54ae8bf

Browse files
committed
Merge branch 'main' into feat
<fix-conflict>
2 parents e6a4b3c + 51c7ec2 commit 54ae8bf

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

Diff for: .github/workflows/github-actions-demo.yml

+24-1
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,40 @@ on:
66
pull_request:
77
branches: [main]
88
jobs:
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+

0 commit comments

Comments
 (0)