Skip to content

Commit df1ba9a

Browse files
authored
fix: correct bash script
1 parent 93ec4f3 commit df1ba9a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/trigger-PR-pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ jobs:
6262

6363
- name: Run Tests
6464
run: |
65-
echo "$TEST_PROJECT" | while read -r $project; do
66-
if [ -n $project]; then
65+
echo "$TEST_PROJECTS" | while read -r project; do
66+
if [ -n $project ]; then
6767
dotnet test "$project" --no-restore --no-build
6868
fi
6969
done

0 commit comments

Comments
 (0)