mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-08 11:17:29 +00:00
fix syntax error
This commit is contained in:
parent
5febdc01a0
commit
a72dca6adb
1 changed files with 9 additions and 8 deletions
17
.github/workflows/months_end.yml
vendored
17
.github/workflows/months_end.yml
vendored
|
|
@ -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 }}
|
||||
Loading…
Add table
Reference in a new issue