1010
1111jobs :
1212 test-php :
13- name : Test on php ${{ matrix.php-version }} and ${{ matrix.os }}
13+ name : Test on PHP ${{ matrix.php-version }} and ${{ matrix.os }}
1414 runs-on : ${{ matrix.os }}
1515 continue-on-error : ${{ matrix.experimental }}
1616 strategy :
@@ -24,15 +24,16 @@ jobs:
2424 - { php-version: 'nightly', experimental: true, os: ubuntu-latest, composer-options: '--ignore-platform-reqs' }
2525 steps :
2626 - uses : actions/checkout@v2
27- - name : Use php ${{ matrix.php-version }}
27+ - name : Use PHP ${{ matrix.php-version }}
2828 uses : shivammathur/setup-php@v2
2929 with :
3030 php-version : ${{ matrix.php-version }}
3131 # phar, json and curl are used by composer
3232 # json is used by testing code
3333 # dom, json, mbstring, libxml, xml, xmlwriter are used by phpunit
3434 # tokenizer, xmlwriter and simplexml are used by phpcs
35- extensions : none, mbstring, phar, json, curl, tokenizer, xml, xmlwriter, simplexml, libxml, dom
35+ # ctype is used by Psalm
36+ extensions : none, mbstring, phar, json, curl, tokenizer, xml, xmlwriter, simplexml, libxml, dom, ctype
3637 coverage : xdebug
3738 - name : Get Composer Cache Directory
3839 id : composer-cache
0 commit comments