Skip to content

Merge branch 'main' of https://github.com/aRibra/mlops_student_exam_r… #4

Merge branch 'main' of https://github.com/aRibra/mlops_student_exam_r…

Merge branch 'main' of https://github.com/aRibra/mlops_student_exam_r… #4

Workflow file for this run

name: MLOPs - Student Exam Results Framework
on: [push]
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 venv venv
source venv/bin/activate
pip install -r requirements.txt
- name: Run tests
run: |
source venv/bin/activate
pytest --junitxml=reports/test-results.xml