Skip to content

feat(forecaster): add v1 training pipeline, reference data, and ops w… #14

feat(forecaster): add v1 training pipeline, reference data, and ops w…

feat(forecaster): add v1 training pipeline, reference data, and ops w… #14

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
cache-dependency-path: "pyproject.toml"
- name: Install
run: |
python -m pip install -e ".[dev]"
- name: Ruff
run: python -m ruff check src tests streamlit_app.py scripts pages
- name: Pytest
env:
SINGAPORE_EDA_HEALTH_SKIP_HTTP: "1"
run: python -m pytest tests -q