Files
testdata-cli/.gitea/workflows/ci.yml
2026-03-22 12:30:46 +00:00

18 lines
264 B
YAML

name: CI
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup Python
run: |
python3 --version
pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v