Skip to content

Update oryx version to 0.2.7 and only expose optax_schedule_free wh… #32

Update oryx version to 0.2.7 and only expose optax_schedule_free wh…

Update oryx version to 0.2.7 and only expose optax_schedule_free wh… #32

Workflow file for this run

name: Build docs
on:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
python-version: [ 3.11 ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[docs]
- name: Upload docs
run: |
mkdocs build
mkdocs gh-deploy --force