Skip to content

Commit

Permalink
fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Jun 25, 2024
1 parent 05b826f commit e609c51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/all-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ jobs:
id: modules-changed
shell: bash
run: |
declare -A changes
changes=(
declare -A changes=(
["pyproject.toml"]="CORE_CHANGED"
["/core/"]="CORE_CHANGED"
["/extractors/neoextractors/neobaseextractor.py"]="CORE_CHANGED"
Expand All @@ -61,6 +60,7 @@ jobs:
["/sortingcomponents/"]="SORTINGCOMPONENTS_CHANGED"
["/generation/"]="GENERATION_CHANGED"
)
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
for pattern in "${!changes[@]}"; do
if [[ $file == *$pattern* ]]; then
Expand Down

0 comments on commit e609c51

Please sign in to comment.