From e103763428efd65dd01f22a2c0bf44cfb5d69c28 Mon Sep 17 00:00:00 2001 From: John Burwell Date: Tue, 2 May 2023 21:01:41 -0500 Subject: [PATCH] what about this --- .gitea/workflows/test.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 6b1a203..fc3bca5 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -5,15 +5,19 @@ jobs: Test: runs-on: ubuntu-latest steps: + - name: Set up Python 3.10 + uses: actions/setup-python@v1 + with: + python-version: 3.10 - name: Check out repository code uses: actions/checkout@v3 - - name: Install Python and pip - run: | - apt update - apt install -y python3-pip + # - name: Install Python and pip + # run: | + # apt update + # apt install -y python3-pip - name: Install dependencies run: | - python3 -m pip install --upgrade pip + python -m pip install --upgrade pip pip install . - name: Run tests run: python -m unittest