File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -60,12 +60,13 @@ jobs:
60
60
SPARKPOST_FROM_NAME : ${{ secrets.SPARKPOST_FROM_NAME }}
61
61
run : |
62
62
# Make file runnable, might not be necessary
63
- chmod +x "${GITHUB_WORKSPACE}/bin/tests.sh"
63
+ cd ${GITHUB_WORKSPACE}
64
+ chmod +x "./bin/tests.sh"
64
65
# Run tests
65
66
# Ignore Postal, no server active.
66
- "${GITHUB_WORKSPACE} /bin/tests.sh mailgun"
67
- "${GITHUB_WORKSPACE} /bin/tests.sh postmark"
68
- "${GITHUB_WORKSPACE} /bin/tests.sh sendgrid"
69
- "${GITHUB_WORKSPACE} /bin/tests.sh smtp"
70
- "${GITHUB_WORKSPACE} /bin/tests.sh sparkpost"
67
+ ". /bin/tests.sh mailgun"
68
+ ". /bin/tests.sh postmark"
69
+ ". /bin/tests.sh sendgrid"
70
+ ". /bin/tests.sh smtp"
71
+ ". /bin/tests.sh sparkpost"
71
72
Original file line number Diff line number Diff line change 1
- #! /usr/local/ bin/bash
1
+ #! /usr/bin/bash
2
2
3
3
# Shell script for executing tests based on input.
4
4
# Usage:
You can’t perform that action at this time.
0 commit comments