Skip to content

Commit

Permalink
check for changes should be true
Browse files Browse the repository at this point in the history
  • Loading branch information
LukBelter committed Jul 30, 2024
1 parent c8e0091 commit 2497f8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
changesOutsideDocsCI=false
for file in $changed_files; do
if [[ $file -ne ".github/"* && $file -ne "doc/"* ]]; then
if [[ $file != .github/* && $file != doc/* ]]; then
echo "file: $file is not part of CI or docs"
echo "Start testing pipeline."
changesOutsideDocsCI=true
Expand Down

0 comments on commit 2497f8f

Please sign in to comment.