Files
vibeguard/.gitea/workflows/ci.yml
7000pctAUTO 0250f4f5a9
All checks were successful
CI / test (push) Successful in 13s
Add Gitea Actions workflow: ci.yml
2026-02-03 07:24:54 +00:00

31 lines
547 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 tests/ -v --tb=short
- name: Run linting
run: |
pip install ruff
ruff check vibeguard/