Bugfix for transformations on Arcs #227
Workflow file for this run
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: Github CI Unit Testing | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: true | |
| strategy: | |
| matrix: | |
| os: [ubuntu-24.04, macos-15, windows-2025] | |
| python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
| - uses: actions/checkout@v2 | |
| # configure python | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| # install deps | |
| - name: Install dependencies for ${{ matrix.os }} Python ${{ matrix.python-version }} | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| pip install scipy | |
| # find and run all unit tests | |
| - name: Run unit tests | |
| run: python -m unittest discover test |