Files
schema2mock/.gitea/workflows/ci.yml
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