From 0e2a1d2f890216688348984af354917c018d0958 Mon Sep 17 00:00:00 2001 From: Coding-Dev-Tools Date: Wed, 1 Jul 2026 05:40:44 -0400 Subject: [PATCH] improve: fix CI branch target (main->master) and fix CONTRIBUTING.md typos --- .github/workflows/ci.yml | 4 ++-- CONTRIBUTING.md | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a06057..21cd8a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,10 +2,10 @@ name: CI on: push: - branches: [main] + branches: [master] tags: ["v*"] pull_request: - branches: [main] + branches: [master] permissions: contents: read diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e93a00c..253ba34 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,14 +8,15 @@ Thanks for your interest in contributing! 2. Create a virtual environment: python -m venv .venv && source .venv/bin/activate 3. Install dev dependencies: pip install -e ".[dev]" 4. Run tests: pytest tests/ -v -5. Lint: uff check src/ +5. Lint: ruff check src/ +6. Run ruff format src/ --check before committing ## Pull Requests - Fork the repo and create a feature branch - Add tests for any new functionality - Ensure all existing tests pass -- Run uff check src/ --fix before committing +- Run ruff check src/ --fix before committing - Keep PRs focused on a single change ## Reporting Issues @@ -32,4 +33,4 @@ Thanks for your interest in contributing! ## License -By contributing, you agree your work will be licensed under the same license as this project. \ No newline at end of file +By contributing, you agree your work will be licensed under the same license as this project.