diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index a5b0ffc..414d035 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -9,16 +9,15 @@ on: jobs: lint-and-test: runs-on: ubuntu-22.04 - container: - image: python:3.10-slim steps: - name: Checkout uses: actions/checkout@v4 - - name: Install dependencies + - name: Install Python & dependencies run: | - pip install -r requirements.txt - pip install ruff pytest + apt-get update && apt-get install -y python3 python3-pip + pip3 install -r requirements.txt + pip3 install ruff pytest - name: Lint run: ruff check .