Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO f91dce7143
Some checks failed
CI / test (push) Failing after 2s
Use minimal CI steps without external actions
2026-03-22 12:29:23 +00:00

24 lines
456 B
YAML

name: CI
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
run: |
echo "Checking out code..."
ls -la
- name: Setup Python
run: |
python3 --version
pip3 --version
- name: Install dependencies
run: |
pip3 install -e . pytest pytest-asyncio
- name: Run tests
run: pytest tests/ -v --tb=short