Closes #2624: import_export_test.py
conversion for new test framewo…
#183
This file contains 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 master changes | |
on: | |
push: | |
branches: | |
- master | |
env: | |
ARKOUDA_QUICK_COMPILE: true | |
jobs: | |
docs: | |
if: github.repository == 'Bears-R-Us/arkouda' | |
runs-on: ubuntu-latest | |
container: | |
image: chapel/chapel:1.31.0 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
apt-get update && apt-get install -y python3-pip rsync libhdf5-dev hdf5-tools libzmq3-dev | |
python3 -m pip install versioneer | |
python3 -m pip install -e .[dev] | |
- name: Arkouda make doc | |
run: | | |
make doc | |
- name: publish-docs | |
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 |