From 7a9e5f73b9b33c31c135d7d7c496936b92225302 Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Fri, 12 Jan 2024 07:59:05 +0100 Subject: [PATCH] Test venv check --- .github/workflows/publish.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index feaae1ea..dd6574cb 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -232,6 +232,9 @@ jobs: - os: macos-latest os-label: macOS python: "3.8" + - os: macos-latest + os-label: macOS + python: "venv" - os: macos-latest os-label: macOS python: "installed" @@ -242,6 +245,9 @@ jobs: - os: ubuntu-latest os-label: Linux python: "3.8" + - os: ubuntu-latest + os-label: Linux + python: "venv" - os: ubuntu-latest os-label: Linux python: "installed" @@ -252,6 +258,9 @@ jobs: - os: windows-latest os-label: Windows python: "installed" + - os: windows-latest + os-label: Windows + python: "venv" - os: windows-2019 os-label: Windows 2019 python: "installed" @@ -261,11 +270,17 @@ jobs: uses: actions/checkout@v4 - name: Setup Python - if: matrix.python != 'installed' + if: matrix.python != 'installed' && matrix.python != 'venv' uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} + - name: Install virtualenv + if: matrix.python == 'venv' + run: | + python3 -m pip install virtualenv + shell: bash + - name: Download Artifacts uses: actions/download-artifact@v3 with: