Update README.md #343
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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')" |