We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e2de52 commit 4c7d2f9Copy full SHA for 4c7d2f9
.github/workflows/github-actions-demo.yml
@@ -25,7 +25,7 @@ jobs:
25
26
- name: List files in the repository
27
run: |
28
- TARGET_FOLDER = "${{ github.workspace }}/DescriptiveStatistics"
+ TARGET_FOLDER="${{ github.workspace }}/DescriptiveStatistics"
29
echo "Listing all files in $TARGET_FOLDER of the workspace directory "
30
- find "$TARGET_FOLDER" -mindepth 2 -type f -name "*.py"
+ find $TARGET_FOLDER -mindepth 2 -type f -name "*.py"
31
- run: echo "🍏 This job's status is ${{ job.status }}."
0 commit comments