Skip to content

Commit 5206569

Browse files
committed
fix: typo in uv command
1 parent b7a8ff9 commit 5206569

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: astral-sh/setup-uv@v7
3131
- name: Install Python dependencies
3232
run: |
33-
uv sync --groups ci
33+
uv sync --group ci
3434
- name: Lint with flake8
3535
run: |
3636
flake8 pycasx

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
uses: astral-sh/setup-uv@v7
3131
- name: Install Python dependencies
3232
run: |
33-
uv sync --groups ci
33+
uv sync --group ci
3434
- name: Static typechecking with mypy
3535
uses: tsuyoshicho/action-mypy@v5

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: astral-sh/setup-uv@v7
2828
- name: Install Python dependencies
2929
run: |
30-
uv sync --groups ci
30+
uv sync --group ci
3131
- name: Analysing the code with pylint
3232
run: |
3333
pylint --output-format=text pycasx

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: astral-sh/setup-uv@v7
3434
- name: Install Python dependencies
3535
run: |
36-
uv sync --groups tests
36+
uv sync --group tests
3737
- name: Test with pytest
3838
run: |
3939
pytest

0 commit comments

Comments
 (0)