diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0d52136..663219b 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -32,6 +32,10 @@ jobs: needs: hygiene steps: - uses: actions/checkout@v4 + - run: | + if ! python3 -m pip --version; then + python3 -m ensurepip --upgrade || (apt-get update && apt-get install -y python3-pip) + fi - run: python3 -m pip install -r requirements.txt - run: python3 -m compileall app - run: python3 -m unittest discover -s tests