Add affine function for image registration #82
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: Test docs | |
| on: [push, pull_request, merge_group] | |
| concurrency: | |
| # Cancel previous workflows of the same PR, but only for PRs | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| test_docs_aarch64: | |
| name: macos-docs | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - name: Checkout scikit-image | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| allow-prereleases: true | |
| cache: "pip" | |
| cache-dependency-path: "requirements/*.txt" | |
| - name: Build and install from source | |
| run: | | |
| pip install -v . | |
| - name: Install doc dependencies | |
| run: | | |
| source .github/scripts/setup-docs-env.sh | |
| - name: Build docs / run examples | |
| run: | | |
| SPHINXCACHE=${HOME}/.cache/sphinx SPHINXOPTS="-W -j auto" make -C doc html | |
| - name: "Job has failed: reporting" | |
| if: ${{ failure() && github.ref == 'refs/heads/main' }} | |
| uses: JasonEtco/create-an-issue@1b14a70e4d8dc185e5cc76d3bec9eab20257b2c5 # v2.9.2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| BUILD_TYPE: "docs build" | |
| with: | |
| filename: .github/MAIN_FAIL_TEMPLATE.md | |
| update_existing: true |