fix syntax error

This commit is contained in:
Jun-te Kim 2025-09-01 09:46:53 +01:00
parent 5febdc01a0
commit a72dca6adb

View file

@ -1,19 +1,20 @@
name: Months End
on:
schedule:
- cron: '0 7 29 * *' # Runs at 7:00 AM UTC on the 29th of every month
- cron: '0 7 29 * *' # Runs at 07:00 UTC on the 29th of every month
workflow_dispatch:
push:
branches: [main, feature/month_end_automation_of_all]
push:
branches: [main, feature/month_end_automation_of_all]
jobs:
surveyed-needs-sign-off:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.12'
@ -22,7 +23,9 @@ jobs:
pip install poetry
poetry install --no-root
- name: run script
- name: Run scripts
env:
PYTHONPATH: ${{ github.workspace }}
run: |
pwd
ls -la
@ -43,5 +46,3 @@ jobs:
poetry run python etl/month_end_automation_wave_2_no_16.py
poetry run python etl/month_end_automation_wave_accent_housing.py
poetry run python etl/month_end_automation_wave_3_layout.py
env:
PYTHONPATH: ${{ github.workspace }}