Skip to content

Commit 51b99b0

Browse files
committed
ci(uv): prevent auto sync on run
1 parent 9cdd357 commit 51b99b0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/docspublish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uv sync --frozen --group base --group script
2323
- name: Update CLI screenshots
2424
run: |
25-
uv run poe doc:screenshots
25+
uv run --no-sync poe doc:screenshots
2626
- name: Commit and push updated CLI screenshots
2727
run: |
2828
git config --global user.name "github-actions[bot]"
@@ -63,7 +63,7 @@ jobs:
6363
env:
6464
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6565
run: |
66-
uv run poe doc:build
66+
uv run --no-sync poe doc:build
6767
- name: Deploy 🚀
6868
uses: JamesIves/github-pages-deploy-action@v4
6969
with:

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
git config --global user.email "action@github.com"
3232
git config --global user.name "GitHub Action"
33-
uv run poe ci
33+
uv run --no-sync poe ci
3434
shell: bash
3535
- name: Upload coverage to Codecov
3636
uses: codecov/codecov-action@v5

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ repos:
7474
name: Format Python code
7575
language: system
7676
pass_filenames: false
77-
entry: uv run poe format
77+
entry: uv run --no-sync poe format
7878
types: [ python ]
7979

8080
- id: linter and test
8181
name: Linters
8282
language: system
8383
pass_filenames: false
84-
entry: uv run poe lint
84+
entry: uv run --no-sync poe lint
8585
types: [ python ]

0 commit comments

Comments
 (0)