Skip to content

Commit

Permalink
My bad.
Browse files Browse the repository at this point in the history
smuuf committed Mar 27, 2022
1 parent f0a8fc2 commit 830dee0
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -15,8 +15,8 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, bcmath, xdebug
coverage: none
extensions: mbstring, bcmath
coverage: xdebug
- name: Install dependencies
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > $HOME/cc-test-reporter
@@ -27,7 +27,7 @@ jobs:
- name: Run tests
run: chmod +x ./primi ./bin/* && ./bin/tests.sh --php php --coverage xml
- name: Run benchmarks
run: ./bin/bench.sh
run: export XDEBUG_MODE=off && ./bin/bench.sh
- name: Run static analysis
continue-on-error: true
run: ./bin/phpstan.sh
2 changes: 1 addition & 1 deletion bin/bench.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/bash

source $(dirname $0)/_helpers.sh
cd $(dirname $0)/..

0 comments on commit 830dee0

Please sign in to comment.