Skip to content

Update changelog.md

Update changelog.md #4

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [main]
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
env:
COMLRL_TEST_MODEL_NAME: Qwen/Qwen2.5-0.5B
COMLRL_TEST_MODEL_NAME_ALT: Qwen/Qwen3-0.6B
TOKENIZERS_PARALLELISM: "false"
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --no-cache-dir setuptools-scm>=8.0.0
pip install --no-cache-dir -r requirements.txt
pip install --no-cache-dir pytest
pip install --no-cache-dir -e . --no-deps
- name: Run unit tests
run: |
pytest -q