Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO c2263e0ac6
Some checks failed
CI / test (push) Failing after 1s
Debug CI - add checkout debug step
2026-03-22 13:09:01 +00:00

22 lines
385 B
YAML

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