Skip to content

[k8s] Update k8s docker image to use ray 2.9.3 (#3350) #19

[k8s] Update k8s docker image to use ray 2.9.3 (#3350)

[k8s] Update k8s docker image to use ray 2.9.3 (#3350) #19

name: Documentation Build
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- master
- 'releases/**'
pull_request:
branches:
- master
- 'releases/**'
jobs:
format:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
cd docs
pip install -r ./requirements-docs.txt
- name: Build documentation
run: |
cd ./docs
./build.sh