more coderabbit suggestions #50
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: Run tests | |
| on: | |
| push: | |
| pull_request: | |
| # Allow to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| python-runners: | |
| name: on ${{ matrix.os }} machine - Python ${{ matrix.python-version }} | |
| runs-on: ${{ matrix.os }} | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: before install | |
| run: | | |
| pip install --upgrade pip setuptools | |
| pip install codecov | |
| - name: install | |
| run: | | |
| # Install ipdb, which will install the right IPython version for the current python. | |
| pip install -e . | |
| - name: run tests | |
| run: | | |
| coverage run setup.py test | |
| codecov |