Fix iOS parsing issue where the next token may not exist.
#104
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: Build | |
| on: [push] | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Cache Composer dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: /tmp/composer-cache | |
| key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
| - name: Install Composer | |
| uses: php-actions/composer@v6 | |
| with: | |
| php_version: 8.2 | |
| php_extensions: mbstring xdebug | |
| - name: PHPUnit Tests | |
| run: ./vendor/bin/phpunit | |
| env: | |
| XDEBUG_MODE: coverage |