Skip to content

pushToHDX

pushToHDX #329

Workflow file for this run

name: pushToHDX
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 coveralls
if [ -f test-requirements.txt ]; then pip install --upgrade -r requirements.txt; fi
- name: Push to HDX
run: |
python run.py --hdx_key=${{secrets.HDXKEY}}