mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-30 13:10:56 +00:00
29 lines
No EOL
625 B
YAML
29 lines
No EOL
625 B
YAML
name: Deal Notes From HubSpot Scraper
|
|
on:
|
|
schedule:
|
|
- cron: '0 19 * * 0'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
sharepoint-validator:
|
|
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/dimitra_hubspot_notes_gather.py
|
|
env:
|
|
PYTHONPATH: ${{ github.workspace }} |