fix: resolve CI/CD workflow configuration issues
Some checks failed
CI / test (push) Failing after 12s

This commit is contained in:
2026-01-30 18:31:41 +00:00
parent 9fff3c883d
commit f83ee53b6e

View File

@@ -15,19 +15,15 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest pytest-cov ruff build
- name: Run linting
run: ruff check config_auditor/ tests/
- name: Run tests
run: pytest tests/ -v --cov=config_auditor
- name: Build package
run: python -m build
- name: Run linting
run: ruff check .