Skip to content

Commit

Permalink
update docs yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
asanchezyali committed Jul 29, 2024
1 parent ff6fe9c commit 8f4cca5
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,31 +26,22 @@ jobs:
sudo apt-get update
sudo apt-get install -y pandoc
- name: Load cached Poetry installation
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-${{ runner.os }}-${{ matrix.python-version }}

- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true

- name: Load cached dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}

- name: Install dependencies
run: |
poetry install --with dev
poetry run pip install sphinx # Asegurarse de que Sphinx esté instalado
poetry run pip list # Listar todos los paquetes instalados
- name: Check Sphinx installation
run: |
poetry run which sphinx-build
poetry run sphinx-build --version
- name: Sphinx build
Expand Down

0 comments on commit 8f4cca5

Please sign in to comment.