mirror of
https://github.com/Hestia-Homes/ML.git
synced 2026-06-08 11:17:25 +00:00
28 lines
757 B
YAML
28 lines
757 B
YAML
name: (REPLACE WITH LAMBDA) Run monitoring on data to ensure that fundamentally, the data and its relationships haven't changed
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "model-**"
|
|
|
|
jobs:
|
|
|
|
Verify-Data:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install packages to generate data report
|
|
run: |
|
|
pip install --upgrade pip
|
|
pip install -r modules/ml-monitoring/src/evidently/src/requirements/requirements.txt
|
|
|
|
- name: Build Monitoring Data docker Image
|
|
run: |
|
|
cd modules/ml-monitoring/src/evidently/
|
|
docker build . --file MonitoringData.Dockerfile --tag monitoring_data_test
|
|
|
|
- name: Run Monitoring Data docker container
|
|
run: |
|
|
docker run monitoring_data_test
|