Skip to content

doc: indicate the components planned but not yet implemented #3

doc: indicate the components planned but not yet implemented

doc: indicate the components planned but not yet implemented #3

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.13'
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-test.txt
- name: Run all tests
run: |
pytest -v --cov=ml_eval --cov-report=xml --cov-report=html --cov-report=term-missing
- name: Upload coverage
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml