From f83ee53b6eba693ac429217833cb1072d177822f Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 18:31:41 +0000 Subject: [PATCH] fix: resolve CI/CD workflow configuration issues --- .gitea/workflows/ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 22c51f2..ea326ad 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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 .