Skip to content

Commit

Permalink
chore: debug running main cli
Browse files Browse the repository at this point in the history
  • Loading branch information
BlairCurrey committed Feb 5, 2024
1 parent 3316319 commit 1b07d7f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/train-spread-predictor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Debug: Print current working directory
run: echo "Current working directory: $(pwd)"

- name: Set up Python
uses: actions/setup-python@v5
Expand All @@ -27,7 +30,9 @@ jobs:
run: poetry install

- name: Run Python script
run: poetry run python main.py --download --train
run: |
cd $GITHUB_WORKSPACE
poetry run python main.py --download --train
# TODO: tag name? release name?
- name: Create release
Expand Down

0 comments on commit 1b07d7f

Please sign in to comment.