Skip to content

refactor: implement agentic loop (like Hugging Face ml-intern) #12

refactor: implement agentic loop (like Hugging Face ml-intern)

refactor: implement agentic loop (like Hugging Face ml-intern) #12

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -e ".[dev]"
- name: Run tests with coverage
run: |
pytest --cov=src/ml_agent --cov-report=xml tests/
- name: Upload coverage
uses: codecov/codecov-action@v3