Skip to content

Commit 8474194

Browse files
committed
Fix github action after directory name change for scripts
1 parent 417af8b commit 8474194

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test_on_pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
repository: ${{github.event.pull_request.head.repo.full_name}}
2222
- name: Start Application
2323
working-directory: local-development
24-
run: ./dev_start.sh
24+
run: ./scripts/linux/dev_start.sh
2525
- name: Run Tests
26-
working-directory: local-development/php-backend-scripts
26+
working-directory: local-development/scripts/php-backend-scripts
2727
run: ./dev_all.sh

.github/workflows/test_on_push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
repository: ${{github.event.pull_request.head.repo.full_name}}
2222
- name: Start Application
2323
working-directory: local-development
24-
run: ./dev_start.sh
24+
run: ./scripts/linux/dev_start.sh
2525
- name: Run Tests
26-
working-directory: local-development/php-backend-scripts
26+
working-directory: local-development/scripts/php-backend-scripts
2727
run: ./dev_all.sh

0 commit comments

Comments
 (0)