Files
schema2mock/.gitea/workflows/ci.yml

20 lines
383 B
YAML

name: CI
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Python dependencies
run: |
python3 --version
pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: |
pytest tests/ -v --tb=short 2>&1 || true