Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 02537ec354
Some checks failed
CI / test (push) Failing after 15s
Revert to simple CI without container
2026-03-22 12:05:21 +00:00

18 lines
357 B
YAML

name: CI
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install
run: pip install -e . && pip install pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v