Skip to content

Commit 0e2a1d2

Browse files
improve: fix CI branch target (main->master) and fix CONTRIBUTING.md typos
1 parent f5870de commit 0e2a1d2

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: CI
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [master]
66
tags: ["v*"]
77
pull_request:
8-
branches: [main]
8+
branches: [master]
99

1010
permissions:
1111
contents: read

CONTRIBUTING.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@ Thanks for your interest in contributing!
88
2. Create a virtual environment: python -m venv .venv && source .venv/bin/activate
99
3. Install dev dependencies: pip install -e ".[dev]"
1010
4. Run tests: pytest tests/ -v
11-
5. Lint: uff check src/
11+
5. Lint: ruff check src/
12+
6. Run ruff format src/ --check before committing
1213

1314
## Pull Requests
1415

1516
- Fork the repo and create a feature branch
1617
- Add tests for any new functionality
1718
- Ensure all existing tests pass
18-
- Run uff check src/ --fix before committing
19+
- Run ruff check src/ --fix before committing
1920
- Keep PRs focused on a single change
2021

2122
## Reporting Issues
@@ -32,4 +33,4 @@ Thanks for your interest in contributing!
3233

3334
## License
3435

35-
By contributing, you agree your work will be licensed under the same license as this project.
36+
By contributing, you agree your work will be licensed under the same license as this project.

0 commit comments

Comments
 (0)