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 626741e commit 377f693Copy full SHA for 377f693
.github/workflows/update_data.yml
@@ -1,4 +1,4 @@
1
-name: Updata Microsoft Stock Price Data
+name: Update Microsoft Stock Price Data
2
3
on:
4
schedule:
@@ -18,6 +18,13 @@ jobs:
18
cache: pip
19
- name: Install dependencies
20
run: pip install -r requirements.txt
21
+ - name: Check directory structure
22
+ run: |
23
+ echo "Current directory: $(pwd)"
24
+ echo "Contents of current directory:"
25
+ ls -la
26
+ echo "Contents of repository root:"
27
+ find . -type f -name "*.py" | sort
28
- name: Update data
29
env:
30
BQ_LAB13: ${{ secrets.BQ_LAB13 }}
0 commit comments