Adds overloads to ak.full #2324
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: docs | |
| # Only publish docs when main changes | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: gh-pages-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| ARKOUDA_QUICK_COMPILE: true | |
| jobs: | |
| docs: | |
| if: github.repository == 'Bears-R-Us/arkouda' | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/bears-r-us/ubuntu-with-arkouda-deps-chpl-2.6.0:latest | |
| credentials: | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.github_token }} | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Set Python version to 3.13 | |
| run: | | |
| update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.13 1 | |
| python3 -m ensurepip --default-pip | |
| - name: check chpldoc version | |
| run: | | |
| chpldoc --version | |
| - name: Install dependencies | |
| run: | | |
| python3 -m pip install .[dev] | |
| - name: Arkouda make doc | |
| run: | | |
| make doc | |
| - name: Install rsync (needed by deploy action) | |
| if: github.repository_owner == 'Bears-R-Us' && ((github.event.pull_request.head.repo.full_name == github.repository) || (github.event_name == 'push')) | |
| run: | | |
| apt-get update | |
| apt-get install -y rsync | |
| - name: publish-docs | |
| if: github.repository_owner == 'Bears-R-Us' && ((github.event.pull_request.head.repo.full_name == github.repository) || (github.event_name == 'push')) | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: gh-pages # This is the branch we'll deploy to | |
| folder: docs # The folder we want to deploy, it becomes the root src of the branch |