Weather Inference/Monitoring Workflow Trigger #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Weather Inference/Monitoring Workflow Trigger | |
on: | |
schedule: | |
- cron: '0 10 1 * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install latest version of Poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | python - | |
- name: Add Poetry to $PATH | |
run: | | |
echo "${HOME}/.poetry/bin" >> $GITHUB_PATH | |
- name: Get Poetry version | |
run: poetry --version | |
- name: Check pyproject.toml validity | |
run: poetry check --no-interaction | |
- name: Install deps | |
run: | | |
make install | |
- name: Set up credentials | |
run: | | |
touch .env | |
echo METEO_URL=${{ secrets.METEO_URL }} >> .env | |
echo MOTHERDUCK_TOKEN=${{ secrets.MOTHERDUCK_TOKEN }} >> .env | |
echo PLOOMBER_API_KEY=${{ secrets.PLOOMBER_API_KEY }} >> .env | |
- name: run Weather Forecasting Workflow | |
run: | | |
make run-pred-flow |