Files
snippet-manager/.gitea/workflows/ci.yml
7000pctAUTO 5d235fa16d
Some checks failed
CI / test (push) Failing after 2s
Debug CI - check if code is already checked out
2026-03-22 12:30:00 +00:00

25 lines
460 B
YAML

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