Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 30365ed9eb
Some checks failed
CI / test (push) Failing after 3s
CI with docker container
2026-03-22 12:39:24 +00:00

13 lines
231 B
YAML

name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
container: python:3.11-slim
steps:
- name: Install
run: pip install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v