diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c052824..ca090bd 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,7 +9,10 @@ on: jobs: test: runs-on: ubuntu-latest - container: python:3.11-slim steps: - - name: Install package - run: pip install -e . pytest pytest-asyncio && python -m pytest tests/ -v \ No newline at end of file + - name: Install dependencies + run: | + pip install -e . pytest pytest-asyncio + - name: Run tests + run: | + python -m pytest tests/ -v \ No newline at end of file