Skip to content

Commit

Permalink
Update validate_submission.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
M-7th authored Dec 17, 2024
1 parent 75e3f5f commit 96383a3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/validate_submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ jobs:
with:
python-version: '3.x'

# Install needed Python packages
- run: pip install pandas


# Checkout the python tools repo
# used to verify the PR changes
# ------------------------------------------
Expand All @@ -64,7 +68,13 @@ jobs:
pr_changes: ${{ steps.get_changed_files.outputs.all_changed_files }}
run: |
python ./tools/code/check_submission_paths.py
# Verify forecasting weeks and horizons
- name: Check date and horizons
env:
pr_changes: ${{ steps.get_changed_files.outputs.all_changed_files }}
run: |
python ./tools/code/check_date_and_horizons.py
- uses: r-lib/actions/setup-r@v2
with:
Expand Down

0 comments on commit 96383a3

Please sign in to comment.