when: - event: push services: - image: postgres:15 - image: memcached:1.5.22 steps: - name: python tests image: python:3.11 commands: - pip install uv - uv sync --extra testing --extra ci - ./.venv/bin/coverage run ./src/manage.py test newsreader - ./.venv/bin/coverage report --show-missing - name: javascript tests image: node:lts commands: - npm install - npm test