Skip to content

Commit 97c04fc

Browse files
committed
fix test workflow
Signed-off-by: George Lemon <georgelemon@protonmail.com>
1 parent 5ab8bfe commit 97c04fc

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
ruby ruby-dev \
3737
python3 python3-dev python3-pip
3838
39-
- name: Install cmake-js for building node bindings"
39+
- name: "Install cmake-js for building node bindings"
4040
run: "npm install cmake-js -g"
4141

4242
- name: "Install Denim for building node bindings"
@@ -66,7 +66,8 @@ jobs:
6666
run: nimble lua
6767

6868
- name: "Test PHP showcase"
69-
run: php -d extension=build/tim_php.so -r 'echo extension_loaded("tim") ? "PHP OK\n" : "PHP FAIL\n";'
69+
run: >
70+
php -d extension=build/tim_php.so -r 'echo extension_loaded("tim") ? "PHP OK\n" : "PHP FAIL\n";'
7071
7172
- name: "Test Python showcase"
7273
run: python3 -c "import sys; sys.path.insert(0,'build'); import tim; print('Python OK')"
@@ -87,7 +88,7 @@ jobs:
8788
git status
8889
git add -f ./bindings/node/tim/src/bin/$timNodeName
8990
git commit -m "update tim addon for nodejs on ${{ runner.os }}" || true
90-
- name: Push changes # push the output folder to your repo
91+
- name: "Push changes"
9192
uses: ad-m/github-push-action@master
9293
with:
9394
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)