File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -23,20 +23,20 @@ jobs:
2323 python -m pip install --upgrade pip
2424 pip install uv
2525 uv venv .venv
26- . .venv/bin/activate
26+ uv pip install --upgrade pip
2727 uv pip install -e ".[dev]"
2828
2929 - name : Black (check)
3030 continue-on-error : true
31- run : .venv/bin/ black --check .
31+ run : uv run black --check .
3232
3333 - name : isort (check)
3434 continue-on-error : true
35- run : .venv/bin/ isort --check-only .
35+ run : uv run isort --check-only .
3636
3737 - name : Flake8
3838 continue-on-error : true
39- run : .venv/bin/ flake8 src/fsdp_unsloth scripts
39+ run : uv run flake8 src/fsdp_unsloth scripts
4040
4141 - name : Syntax check (compileall)
42- run : .venv/bin/ python -m compileall -q src/fsdp_unsloth scripts
42+ run : uv run python -m compileall -q src/fsdp_unsloth scripts
Original file line number Diff line number Diff line change 88jobs :
99 run-pre-commit :
1010 runs-on : ubuntu-latest
11+ continue-on-error : true
1112 steps :
1213 - uses : actions/checkout@v4
1314 - name : Set up Python
2021 pip install pre-commit
2122 - name : Run pre-commit
2223 uses : pre-commit/action@v3.0.1
24+ continue-on-error : true
You can’t perform that action at this time.
0 commit comments