From bbeabfa781941b1939794809aa11d02697c6255f Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 17:24:28 +0000 Subject: [PATCH] fix: resolve CI issues - remove unused imports and fix code quality --- .gitea/workflows/repohealth.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/repohealth.yml diff --git a/.gitea/workflows/repohealth.yml b/.gitea/workflows/repohealth.yml new file mode 100644 index 0000000..e5c433d --- /dev/null +++ b/.gitea/workflows/repohealth.yml @@ -0,0 +1,23 @@ +name: repohealth-cli CI + +on: + push: + branches: [main] + paths: + - 'repohealth-cli/**' + pull_request: + branches: [main] + paths: + - 'repohealth-cli/**' + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - run: cd repohealth-cli && pip install -e ".[dev]" + - run: cd repohealth-cli && pytest tests/ -v + - run: cd repohealth-cli && ruff check src/ tests/ \ No newline at end of file