mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-07-12 13:29:08 +00:00
46 lines
No EOL
1.7 KiB
YAML
46 lines
No EOL
1.7 KiB
YAML
name: Months End
|
|
on:
|
|
schedule:
|
|
- cron: '0 7 29 * *' # Runs at 7:00 AM UTC on the 29th of every month
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
surveyed-needs-sign-off:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install poetry
|
|
poetry install --no-root
|
|
|
|
- name: run script
|
|
run: |
|
|
pwd
|
|
ls -la
|
|
poetry run python etl/month_end_automation_wave_2_layout.py
|
|
poetry run python etl/month_end_automation_wave_2_no_3.py
|
|
poetry run python etl/month_end_automation_wave_2_no_4.py
|
|
poetry run python etl/month_end_automation_wave_2_no_5.py
|
|
poetry run python etl/month_end_automation_wave_2_no_6.py
|
|
poetry run python etl/month_end_automation_wave_2_no_7.py
|
|
poetry run python etl/month_end_automation_wave_2_no_8.py
|
|
poetry run python etl/month_end_automation_wave_2_no_9.py
|
|
poetry run python etl/month_end_automation_wave_2_no_10.py
|
|
poetry run python etl/month_end_automation_wave_2_no_11.py
|
|
poetry run python etl/month_end_automation_wave_2_no_12.py
|
|
poetry run python etl/month_end_automation_wave_2_no_13.py
|
|
poetry run python etl/month_end_automation_wave_2_no_14.py
|
|
poetry run python etl/month_end_automation_wave_2_no_15.py
|
|
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 }} |