Files
schema2mock/.gitea/workflows/ci.yml

18 lines
311 B
YAML

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
pip install -e . pytest pytest-asyncio
- name: Run tests
run: |
python -m pytest tests/ -v