Skip to content

Commit

Permalink
Fix: Python Lint Workflowの実行条件を変更 (VOICEVOX#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi authored Sep 16, 2023
1 parent 239a1d7 commit bf70839
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/java_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ on:
- main
pull_request:
paths:
- ./crates/voicevox_core_java_api/**/*.java
- ./crates/voicevox_core_java_api/gradle/**
- ./crates/voicevox_core_java_api/gradlew
- ./crates/voicevox_core_java_api/settings.gradle
- ./.github/workflows/java_lint.yml
- 'crates/voicevox_core_java_api/**.java'
- 'crates/voicevox_core_java_api/gradle/**'
- 'crates/voicevox_core_java_api/gradlew'
- 'crates/voicevox_core_java_api/settings.gradle'
- '.github/workflows/java_lint.yml'

defaults:
run:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ on:
- main
pull_request:
paths:
- ./example/python/**/*.py
- ./crates/voicevox_core_python_api/**/*.py
- ./crates/voicevox_core_python_api/requirements*.txt
- ./crates/voicevox_core_python_api/pyproject.toml
- ./.github/workflows/python_lint.yml
- 'example/python/**.py'
- 'crates/voicevox_core_python_api/**.py'
- 'crates/voicevox_core_python_api/requirements*.txt'
- 'crates/voicevox_core_python_api/pyproject.toml'
- '.github/workflows/python_lint.yml'

defaults:
run:
Expand All @@ -37,4 +37,4 @@ jobs:
working-directory: ./example/python
run: |
black --check .
isort --check .
isort --check --profile black .

0 comments on commit bf70839

Please sign in to comment.