Skip to content

Commit

Permalink
Update workflows to use dependencies groups
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick ZAJDA <[email protected]>
  • Loading branch information
Nardol committed Jan 16, 2025
1 parent 7c24773 commit b1b5486
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
cache-suffix: lint

- name: 📦 Install dependencies
run: uv sync --frozen --extra lint
run: uv sync --frozen --group lint

- name: Pre-commit cache
uses: actions/[email protected]
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
run: uv python install ${{ matrix.python-version }}

- name: 📦 Install dependencies
run: uv sync --frozen --extra test
run: uv sync --frozen --group test

- name: 🏃 Run tests
run: uv run pytest tests
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
id: python

- name: 📦 Install dependencies
run: uv sync --frozen --extra doc
run: uv sync --frozen --group doc

- name: Build documentation using sphinx
run: uv run make -C docs html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
id: python

- name: 📦 Install dependencies
run: uv sync --frozen --extra doc --extra ci
run: uv sync --frozen --group ci

- name: Get version
id: get-version
Expand Down

0 comments on commit b1b5486

Please sign in to comment.