Files
vibeguard/.gitea/workflows/ci.yml
7000pctAUTO 4a258a122a
Some checks failed
CI / test (push) Has been cancelled
fix: resolve CI workflow failures
- Remove tree-sitter CLI installation (npm not needed)
- Remove tree-sitter parsers installation
- Simplified dependency installation to pytest/pytest-cov
- Fixed package installation to use 'pip install -e vibeguard/'
- Create proper pyproject.toml with all dependencies
2026-02-03 07:22:09 +00:00

31 lines
557 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
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 dependencies
run: |
pip install pytest pytest-cov
pip install -e vibeguard/
- name: Run tests
run: pytest vibeguard/tests/ -v --tb=short
- name: Run linting
run: |
pip install ruff
ruff check vibeguard/