Fixes to migration from cals by block. #1
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: Python CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest # Or macos-latest if needed | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' # Specify your desired version | |
- name: Install dependencies | |
run: pip install poetry | |
- name: Set up project | |
run: poetry install -E cpu -E test | |
- name: Build Docs | |
run: poetry sphinx-build -W -b html . _build/html | |