Shapes : Add moveShape(), and say how shapes stack #1077
Workflow file for this run
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: PHPPresentation | |
| on: [push, pull_request] | |
| jobs: | |
| php-cs-fixer: | |
| name: PHP CS Fixer | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '7.4' | |
| extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv | |
| - uses: actions/checkout@v2 | |
| - name: Validate composer config | |
| run: composer validate --strict | |
| - name: Composer Install | |
| run: composer global require friendsofphp/php-cs-fixer | |
| - name: Add environment path | |
| run: export PATH="$PATH:$HOME/.composer/vendor/bin" | |
| - name: Run PHPCSFixer | |
| run: php-cs-fixer fix --dry-run --diff | |
| phpmd: | |
| name: PHP Mess Detector | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '7.4' | |
| extensions: gd, xml, zip | |
| - uses: actions/checkout@v2 | |
| - name: Composer Install | |
| run: composer install --ansi --prefer-dist --no-interaction --no-progress | |
| - name: Run phpmd | |
| run: ./vendor/bin/phpmd src/,tests/ text ./phpmd.xml.dist | |
| phpstan: | |
| name: PHP Static Analysis | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: gd, xml, zip | |
| - uses: actions/checkout@v2 | |
| - name: Composer Install | |
| run: composer install --ansi --prefer-dist --no-interaction --no-progress | |
| - name: Run phpstan | |
| run: ./vendor/bin/phpstan analyse -c phpstan.neon.dist | |
| phpunit: | |
| name: PHPUnit ${{ matrix.php }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: gd, xml, zip | |
| coverage: ${{ (matrix.php == '8.5') && 'xdebug' || 'none' }} | |
| - uses: actions/checkout@v2 | |
| - name: Composer Install | |
| run: composer install --ansi --prefer-dist --no-interaction --no-progress | |
| - name: Run phpunit | |
| if: matrix.php != '8.5' | |
| run: ./vendor/bin/phpunit -c phpunit.xml.dist --no-coverage | |
| # the newest PHP is where a new deprecation shows up first, so that leg is the one | |
| # that refuses to be green while the suite still has something to report -- and the | |
| # one that gathers the coverage, so that there is a single leg out of the ordinary | |
| - name: Run phpunit | |
| if: matrix.php == '8.5' | |
| run: ./vendor/bin/phpunit -c phpunit.xml.dist --coverage-clover build/clover.xml --fail-on-deprecation --fail-on-notice --fail-on-phpunit-deprecation | |
| - name: Upload coverage results to Coveralls | |
| if: matrix.php == '8.5' | |
| env: | |
| COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.4.3/php-coveralls.phar | |
| chmod +x php-coveralls.phar | |
| php php-coveralls.phar --coverage_clover=build/clover.xml --json_path=build/coveralls-upload.json -vvv | |
| samples: | |
| name: Check samples | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: gd, xml, zip | |
| coverage: xdebug | |
| - uses: actions/checkout@v2 | |
| - name: Composer Install | |
| run: composer install --ansi --prefer-dist --no-interaction --no-progress | |
| - name: Generate samples files | |
| run: composer run samples |