Issue #78: Update get_absolute_path_of_file, more checking, then rely… #124
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
| on: push | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-ver: [3.9, '3.10', 3.11, 3.12, 3.13] | |
| experimental: [false] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-ver }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements-dev.txt | |
| - name: Run tests | |
| run: | | |
| coverage erase | |
| coverage run -a --source ./sksurgerycore -m pytest -v -s ./tests/ | |
| coverage report -m | |
| pylint --rcfile=tests/pylintrc sksurgerycore tests | |
| - name: Run coveralls | |
| run: | | |
| coveralls | |
| deploy: | |
| runs-on: ubuntu-latest | |
| needs: test | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/checkout@master | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.13 | |
| - name: Install dependencies | |
| run: python -m pip install wheel twine setuptools | |
| - name: Build wheel | |
| run: | | |
| python setup.py sdist | |
| - name: Publish package if tagged release | |
| if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
| uses: pypa/[email protected] | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_API_TOKEN }} |