Files
config-converter-cli/.gitea/workflows/ci.yml
7000pctAUTO 45606782cc
Some checks failed
CI / test (push) Has been cancelled
feat: add complete config-converter-cli implementation
- Add all source files and tests
- Fix CI linting and type checking issues
- Ensure code passes ruff and mypy checks
2026-02-04 22:16:16 +00:00

36 lines
671 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: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v --tb=short
- name: Run linting
run: |
pip install ruff
ruff check .
- name: Check types
run: |
pip install mypy
mypy config_converter/