Skip to content

Commit

Permalink
ci: Limit workflows to Python files and optimize environment setup (#…
Browse files Browse the repository at this point in the history
…4567)

* Limit style check workflow to Python files only

* refactor: update autofix workflow to target Python files and optimize environment setup
  • Loading branch information
ogabrielluiz authored Nov 13, 2024
1 parent 151c369 commit f91a700
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/py_autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ name: autofix.ci
on:
pull_request:
paths:
- "poetry.lock"
- "pyproject.toml"
- "src/backend/**"
- "**/*.py"
env:
POETRY_VERSION: "1.8.2"

Expand All @@ -14,7 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: install-pinned/ruff@9ebc31a5721a0fb034f915e4bbcb2ee6feeaecbc
- run: ruff check --fix-only .
- run: ruff format .
- name: "Setup Environment"
uses: ./.github/actions/setup-uv
- run: uv run ruff check --fix-only .
- run: uv run ruff format .
- uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a
- name: Minimize uv cache
run: uv cache prune --ci
2 changes: 2 additions & 0 deletions .github/workflows/style-check-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Ruff Style Check
on:
pull_request:
types: [opened, synchronize, reopened, auto_merge_enabled]
paths:
- "**/*.py"



Expand Down

0 comments on commit f91a700

Please sign in to comment.