From 02ee134ca5f9eff6a6ca0824c4092a6584224827 Mon Sep 17 00:00:00 2001 From: Arnaud-D <35631001+Arnaud-D@users.noreply.github.com> Date: Sat, 28 Oct 2023 20:42:54 +0200 Subject: [PATCH] =?UTF-8?q?Met=20=C3=A0=20jour=20la=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a31f51355..efebd0626d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,6 +97,17 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Set up Python ${{ env.PYTHON_VERSION }} + uses: actions/setup-python@v4 + with: + python-version: "${{ env.PYTHON_VERSION }}" + + - name: Upgrade pip + run: pip install --upgrade pip + + - name: Install cairosvg dependency + run: pip install cairosvg + - name: Set up NodeJS ${{ env.NODE_VERSION }} uses: actions/setup-node@v3 with: