refactor: β¨ ruff rules enabled and fixed and code refactor made #1146
Workflow file for this run
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 Test WorkFlow π | |
on: | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
docs-build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Checkout code | |
uses: actions/checkout@v4 | |
- name: π Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: ποΈ Install dependencies and Test Docs Build | |
run: | | |
python -m pip install --upgrade pip | |
pip install "mkdocs-material" "mkdocstrings[python]" "mkdocs-material[imaging]" mike "mkdocs-git-revision-date-localized-plugin" jupyterlab mkdocs-jupyter mkdocs-git-committers-plugin-2 | |
mkdocs build --verbose |