Use packagist v2 by default #21
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: Tests | |
| on: | |
| push: | |
| branches: [ '**' ] | |
| pull_request: | |
| branches: [ '**' ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] | |
| setup: ['lowest', 'stable', 'next'] | |
| name: PHP ${{ matrix.php }} - ${{ matrix.setup }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| tools: composer:v2 | |
| coverage: none | |
| - name: Cache Composer packages | |
| id: composer-cache | |
| uses: actions/cache@v2 | |
| with: | |
| path: vendor | |
| key: ${{ runner.os }}-${{ matrix.setup }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ matrix.setup }}-php-${{ matrix.php }}- | |
| - name: Configure plugins | |
| if: matrix.setup == 'lowest' | |
| run: composer config --no-plugins allow-plugins.ocramius/package-versions true | |
| - name: Install dependencies | |
| if: steps.composer-cache.outputs.cache-hit != 'true' | |
| run: | | |
| composer config version 1.9.0 | |
| ${{ matrix.php >= 7.2 && matrix.php < 8 && matrix.setup == 'lowest' && 'composer require --no-update "phpunit/phpunit:^5.7.27||^6.5.14||^7.5.20" --no-interaction;' || '' }} | |
| composer update --prefer-dist ${{ matrix.setup != 'next' && format('--prefer-{0}', matrix.setup) || '' }} --no-progress ${{ matrix.php >= 8.1 && '--ignore-platform-req=php' || '' }} --no-interaction | |
| - name: Prepare git config | |
| run: | | |
| git config --global init.defaultBranch main | |
| git config --global user.name tester | |
| git config --global user.email tester@phug-lang.com | |
| - name: Run test suite | |
| run: vendor/bin/phpunit --no-coverage --verbose |