Skip to content

Commit

Permalink
Rename check-paths to detect-code-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
guarin committed Feb 13, 2024
1 parent d01f885 commit e26dac3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
workflow_dispatch:

jobs:
check-paths:
detect-code-changes:
name: Detect Code Changes
runs-on: ubuntu-latest
outputs:
run-tests: ${{ steps.filter.outputs.run-tests }}
Expand All @@ -26,8 +27,8 @@ jobs:
test:
name: Test
needs: check-paths
if: needs.check-paths.outputs.run-tests == 'true'
needs: detect-code-changes
if: needs.detect-code-changes.outputs.run-tests == 'true'
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test_minimal_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
workflow_dispatch:

jobs:
check-paths:
detect-code-changes:
name: Detect Code Changes
runs-on: ubuntu-latest
outputs:
run-tests: ${{ steps.filter.outputs.run-tests }}
Expand All @@ -26,8 +27,8 @@ jobs:
test:
name: Test
needs: check-paths
if: needs.check-paths.outputs.run-tests == 'true'
needs: detect-code-changes
if: needs.detect-code-changes.outputs.run-tests == 'true'
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
workflow_dispatch:

jobs:
check-paths:
detect-code-changes:
name: Detect Code Changes
runs-on: ubuntu-latest
outputs:
run-tests: ${{ steps.filter.outputs.run-tests }}
Expand All @@ -24,8 +25,8 @@ jobs:
test:
name: Test setup.py
needs: check-paths
if: needs.check-paths.outputs.run-tests == 'true'
needs: detect-code-changes
if: needs.detect-code-changes.outputs.run-tests == 'true'
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit e26dac3

Please sign in to comment.