Files
code-pattern-search-cli/.gitea/workflows/ci.yml
7000pctAUTO ceb7154dac
Some checks failed
CI / test (push) Has been cancelled
Initial upload with CI/CD workflow
2026-02-02 18:27:10 +00:00

29 lines
513 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v --tb=short
- name: Run linting
run: flake8 src/ tests/ --max-line-length=100