tests #201
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: | |
| - master | |
| tags-ignore: | |
| - '**' | |
| pull_request: | |
| schedule: | |
| - cron: '0 0 * * 0' # once in a week, docs: <https://git.io/JvxXE#onschedule> | |
| jobs: # Docs: <https://git.io/JvxXE> | |
| php: | |
| name: PHP ${{ matrix.php }}, ${{ matrix.setup }} setup | |
| runs-on: ubuntu-20.04 | |
| timeout-minutes: 10 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| setup: [basic, lowest] | |
| coverage: [yes] | |
| php: ['7.2', '7.3', '7.4', '8.0'] | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Setup PHP, with composer and extensions | |
| uses: shivammathur/setup-php@v2 # Action page: <https://github.com/shivammathur/setup-php> | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: mbstring, xdebug | |
| - name: Get Composer Cache Directory # Docs: <https://git.io/JfAKn#php---composer> | |
| id: composer-cache | |
| run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
| - name: Cache dependencies # Docs: <https://git.io/JfAKn#php---composer> | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ matrix.setup }}-${{ hashFiles('**/composer.json') }} | |
| restore-keys: ${{ runner.os }}-composer- | |
| - name: Install lowest Composer dependencies | |
| if: matrix.setup == 'lowest' | |
| run: composer update --prefer-dist --prefer-lowest --ansi | |
| - name: Install basic Composer dependencies | |
| if: matrix.setup == 'basic' | |
| run: composer update --prefer-dist --ansi | |
| - name: Show most important package versions | |
| run: composer info | grep -e phpunit -e phpstan | |
| - name: Execute tests | |
| if: matrix.coverage != 'yes' | |
| run: composer test | |
| - name: Execute tests with code coverage | |
| if: matrix.coverage == 'yes' | |
| env: | |
| XDEBUG_MODE: coverage | |
| run: composer test-cover | |
| - uses: codecov/codecov-action@v1 # Docs: <https://github.com/codecov/codecov-action> | |
| if: matrix.coverage == 'yes' | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| file: ./sdk/php/coverage/clover.xml | |
| flags: php | |
| fail_ci_if_error: false | |
| lint-changelog: | |
| name: Lint changelog file | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Lint changelog file | |
| uses: docker://avtodev/markdown-lint:v1 # Action page: <https://github.com/avto-dev/markdown-lint> | |
| with: | |
| rules: '/lint/rules/changelog.js' | |
| config: '/lint/config/changelog.yml' | |
| args: './CHANGELOG.md' |