Skip to content

Commit 63f766f

Browse files
committed
🐎 ci: add env UV_NO_SYNC in ci
1 parent 9d80593 commit 63f766f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id-token: write
2626
contents: read
2727
concurrency:
28-
group: test-coverage-${{ github.ref }}-${{ matrix.python-version }}
28+
group: test-coverage-${{ github.ref }}-${{ matrix.python-version }} #-${{ env.OS}}
2929
cancel-in-progress: true
3030

3131
strategy:
@@ -37,6 +37,7 @@ jobs:
3737
env:
3838
# OS: ${{ matrix.os }}
3939
PYTHON_VERSION: ${{ matrix.python-version }}
40+
UV_NO_SYNC: 1
4041

4142
steps:
4243
- uses: actions/checkout@v5
@@ -52,17 +53,17 @@ jobs:
5253
run: uv sync --no-dev --locked
5354

5455
- name: Run Pytest
55-
run: uv run --no-sync poe test
56+
run: uv run poe test
5657

5758
- name: Upload test results to Codecov
5859
if: ${{ !cancelled() }}
5960
uses: codecov/test-results-action@v1
6061
with:
61-
env_vars: PYTHON_VERSION,PYDANTIC_VERSION
62+
env_vars: PYTHON_VERSION, PYDANTIC_VERSION
6263
use_oidc: true
6364

6465
- name: Upload coverage to Codecov
6566
uses: codecov/codecov-action@v5
6667
with:
67-
env_vars: PYTHON_VERSION,PYDANTIC_VERSION
68+
env_vars: PYTHON_VERSION, PYDANTIC_VERSION
6869
use_oidc: true

0 commit comments

Comments
 (0)