From 25fd8210e598aa1f3c49eb4462bfbcf488391065 Mon Sep 17 00:00:00 2001 From: Curve Date: Fri, 24 May 2024 00:13:19 +0200 Subject: [PATCH] fix(ci/python): install python3(-devel) [skip ci] --- .github/actions/setup/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index bd4ad42d..7beaf21f 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -18,6 +18,11 @@ runs: - name: 🖥️ Enable MSVC Dev Console uses: ilammy/msvc-dev-cmd@v1 + - name: 📋 Install Dependencies + shell: bash + if: ${{ inputs.os == 'ubuntu-latest' }} + run: dnf install -y python3 python3-devel + - name: 📋 Install OpenMP shell: bash if: ${{ inputs.os == 'macos-latest' }}