Add the long description (refpurpose) so that we can expose that in the meta information on the web site #227
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: test | |
| strategy: | |
| matrix: | |
| version: ['8.1', '8.2', '8.3'] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout PhD | |
| uses: actions/checkout@v5 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{matrix.version}} | |
| - name: Get run-test.php | |
| run: wget https://raw.githubusercontent.com/php/php-src/master/run-tests.php | |
| - name: Run tests | |
| run: php run-tests.php -P -q --no-progress --offline --show-diff --show-slow 1000 --set-timeout 120 -g FAIL,BORK,LEAK,XLEAK tests/ |