File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed
Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches :
9+ - master
10+
11+ jobs :
12+ Lint :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v4
16+ - uses : actions/setup-python@v5
17+ with :
18+ python-version : " 3.12"
19+ -
uses :
pre-commit/[email protected] 20+
21+ Build :
22+ runs-on : ubuntu-latest
23+ steps :
24+ - uses : actions/checkout@v4
25+ - uses : actions/setup-python@v5
26+ with :
27+ python-version : " 3.12"
28+ -
uses :
astral-sh/[email protected] 29+ - run : uv build
Original file line number Diff line number Diff line change 1+ repos :
2+ - repo : https://github.com/astral-sh/ruff-pre-commit
3+ rev : v0.7.0
4+ hooks :
5+ - id : ruff
6+ args :
7+ - --fix
8+ - id : ruff-format
9+
10+ - repo : https://github.com/pre-commit/pre-commit-hooks
11+ rev : v5.0.0
12+ hooks :
13+ - id : debug-statements
14+ - id : end-of-file-fixer
15+ - id : trailing-whitespace
You can’t perform that action at this time.
0 commit comments