Skip to content

feat: add 24/7 daemon server (like pi.dev for ML workflows) #3

feat: add 24/7 daemon server (like pi.dev for ML workflows)

feat: add 24/7 daemon server (like pi.dev for ML workflows) #3

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