Skip to content

Commit 70d0111

Browse files
committed
Github actions changes for static analysis.
1 parent de15ba5 commit 70d0111

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/test_develop_and_master.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ jobs:
5454
./vendor/bin/phpunit --configuration tests/phpunit.xml --testsuite=LinearAlgebra
5555
5656
- name: PHP Code Sniffer
57-
run: ./vendor/bin/phpcs --ignore=vendor --standard=tests/coding_standard.xml -s .
57+
run: |
58+
./vendor/bin/phpcs --version
59+
./vendor/bin/phpcs --ignore=vendor --standard=tests/coding_standard.xml -s .
5860
5961
- name: Static analysis
6062
run: |

.github/workflows/test_other_branches.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ jobs:
5353
./vendor/bin/phpunit --configuration tests/phpunit.xml --testsuite=LinearAlgebra
5454
5555
- name: PHP Code Sniffer
56-
run: ./vendor/bin/phpcs --ignore=vendor --standard=tests/coding_standard.xml -s .
56+
run: |
57+
./vendor/bin/phpcs --version
58+
./vendor/bin/phpcs --ignore=vendor --standard=tests/coding_standard.xml -s .
5759
5860
- name: Static analysis
5961
run: |

.github/workflows/test_pull_request.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ jobs:
5050
./vendor/bin/phpunit --configuration tests/phpunit.xml --testsuite=LinearAlgebra
5151
5252
- name: PHP Code Sniffer
53-
run: ./vendor/bin/phpcs --ignore=vendor --standard=tests/coding_standard.xml -s .
53+
run: |
54+
./vendor/bin/phpcs --version
55+
./vendor/bin/phpcs --ignore=vendor --standard=tests/coding_standard.xml -s .
5456
5557
- name: Static analysis
5658
run: |

0 commit comments

Comments
 (0)