diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f5e7dcd..4d4a1c5 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,12 +6,14 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: gitea steps: - - name: Check Python + - name: Check environment run: | - /usr/bin/python3 --version || /usr/local/bin/python3 --version || echo "Python not found" - - name: Install deps using pip3 + whoami + pwd + python3 --version || echo "Python not found" + - name: Install deps run: | pip3 install -e ".[dev]" - name: Lint