From bb17c17ababb1f9bedcfd96c4561bfb3febd099d Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Fri, 1 Dec 2023 19:44:19 +0100 Subject: [PATCH] github-actions: use python3 instead of python --- .github/workflows/actions.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index feeefee87..97ccceb64 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -30,25 +30,26 @@ jobs: - name: Setup virtual environment run: | - python -m venv .venv + python3 --version + python3 -m venv .venv source .venv/bin/activate # this will not work on widows - name: Upgrade pip - run: pip install --upgrade pip + run: pip3 install --upgrade pip - name: Install wheel - run: pip install pytest + run: pip3 install pytest - name: Install lib - run: python setup.py develop + run: python3 setup.py develop - name: Run pytest run: pytest - name: Install wheel - run: pip install wheel + run: pip3 install wheel - name: Build wheel - run: python setup.py wheel + run: python3 setup.py wheel # TODO: add deploy job \ No newline at end of file