From 5d4dbfbe45352b9552ceda823c9fdf00d37f593a Mon Sep 17 00:00:00 2001 From: John Burwell Date: Tue, 2 May 2023 21:16:26 -0500 Subject: [PATCH] where --- .gitea/workflows/test.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index fdb5428..f80e6cf 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -5,16 +5,13 @@ jobs: Test: runs-on: ubuntu-latest steps: - - name: Set up Python 3.10 - uses: https://github.com/actions/setup-python@v4 - with: - python-version: 3.10 + - name: Install Python and pip + run: | + apt update + apt install -y python3-pip + whereis python3 - name: Check out repository code uses: actions/checkout@v3 - # - name: Install Python and pip - # run: | - # apt update - # apt install -y python3-pip - name: Install dependencies run: | python -m pip install --upgrade pip