Add base href to fix zoom control icons for subpages #1465 #672
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: PHP Composer | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| run-ci: | |
| name: PHP ${{ matrix.php-versions }} test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php-versions: | |
| - "7.4" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup PHP with XDebug | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| coverage: xdebug | |
| tools: composer | |
| - name: Install dependencies | |
| run: composer install --prefer-dist --no-progress | |
| - name: Run tests | |
| run: composer test |