Widen child index padding from 3 to 6 digits in .iq5 group names #146
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: Pytest | |
| on: [push] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest, macos-latest, windows-latest ] | |
| python-version: ["3.10","3.11","3.12","3.13"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install numpy Cython | |
| pip install . | |
| continue-on-error: true | |
| - name: Test with pytest | |
| run: | | |
| pip install pytest pytest-cov | |
| pytest $(git ls-files 'tests/*.py') --cov=com --cov-report=xml --cov-report=html | |
| continue-on-error: true |