Files
agentic-codebase-memory-man…/.gitea/workflows/ci.yml
7000pctAUTO 2ef562785d
Some checks failed
CI / test (push) Failing after 2s
fix: use pure shell steps without actions/checkout
2026-03-22 17:00:00 +00:00

32 lines
570 B
YAML

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
run: |
pwd
ls -la
- name: Test Python
run: |
python3 --version
pip3 --version
- name: Install deps
run: |
pip3 install -e ".[dev]"
- name: Run lint
run: |
ruff check src/
- name: Run type check
run: |
mypy src/
- name: Run tests
run: |
pytest tests/ -v