clean up imports using ruff #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: 🐙 Publish to Github Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: 📄 Deploy Docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🚚 | |
uses: actions/[email protected] | |
- name: Set up Python 🐍 | |
uses: actions/[email protected] | |
with: | |
python-version: 3.12 | |
- name: Install dependencies ⚙️ | |
run: | | |
pip install -U -e .[docs] | |
- name: Build Sphinx Documentation 📄 | |
run: | | |
cd docs | |
make html | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs/_build/html |