Skip to content

Update README.md

Update README.md #343

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test-import:
name: Test Import
runs-on: ubuntu-latest
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 numpy>=1.21.0 packaging>=21.0 pyyaml>=6.0.1 tqdm>=4.65.0
pip install --no-cache-dir -e . --no-deps
- name: Test imports
run: |
python -c "import comlrl; print('✓ comlrl imported successfully')"