From 376a5ab71a21f6f483f27c8b8a70826789008f26 Mon Sep 17 00:00:00 2001 From: JulioLoayzaM Date: Thu, 30 May 2024 11:42:58 +0200 Subject: [PATCH] ci: pip install poetry --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d4b0679..535ecc0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -53,6 +53,7 @@ jobs: - name: Run the test suite and coverage run: | export PYTHONDONTWRITEBYTECODE=1 + python -m pip install poetry poetry config virtualenvs.in-project true; poetry install -vv; source `poetry env info --path`/bin/activate sudo apt-get install -y --no-install-recommends pandoc texlive texlive-latex-extra make coverage-ci @@ -72,6 +73,7 @@ jobs: - name: Build the docs run: | export PYTHONDONTWRITEBYTECODE=1 + python -m pip install poetry poetry config virtualenvs.in-project true; poetry install -vv; source `poetry env info --path`/bin/activate sudo apt-get install -y --no-install-recommends pandoc make docs @@ -91,6 +93,7 @@ jobs: - name: Build docs for publishing run: | export PYTHONDONTWRITEBYTECODE=1 + python -m pip install poetry poetry config virtualenvs.in-project true; poetry install -vv; source `poetry env info --path`/bin/activate sudo apt-get install -y --no-install-recommends pandoc make pages-ci @@ -129,6 +132,7 @@ jobs: - name: Build the package run: | export PYTHONDONTWRITEBYTECODE=1 + python -m pip install poetry poetry config virtualenvs.in-project true; poetry install -vv; source `poetry env info --path`/bin/activate sudo apt-get install -y --no-install-recommends pandoc texlive texlive-latex-extra make build-ci