Do not fetch tags #1632
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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
on: | |
- pull_request | |
- push | |
name: CI | |
env: | |
COMPOSER_ROOT_VERSION: 10.1.x-dev | |
PHP_VERSION: 8.4 | |
jobs: | |
coding-guidelines: | |
name: Coding Guidelines | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
with: | |
fetch-depth: 1 | |
ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
- name: Use local branch | |
shell: bash | |
run: | | |
BRANCH=$([ "${{ github.event_name }}" == "pull_request" ] && echo "${{ github.head_ref }}" || echo "${{ github.ref_name }}") | |
git branch -D $BRANCH 2>/dev/null || true | |
git branch $BRANCH HEAD | |
git checkout $BRANCH | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ env.PHP_VERSION }} | |
extensions: none, iconv, json, phar, tokenizer | |
coverage: none | |
tools: none | |
- name: Run PHP-CS-Fixer | |
run: ./tools/php-cs-fixer fix --dry-run --show-progress=dots --using-cache=no --verbose | |
type-checker: | |
name: Type Checker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
with: | |
fetch-depth: 1 | |
ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
- name: Use local branch | |
shell: bash | |
run: | | |
BRANCH=$([ "${{ github.event_name }}" == "pull_request" ] && echo "${{ github.head_ref }}" || echo "${{ github.ref_name }}") | |
git branch -D $BRANCH 2>/dev/null || true | |
git branch $BRANCH HEAD | |
git checkout $BRANCH | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
extensions: none, ctype, dom, iconv, mbstring, opcache, simplexml, tokenizer, xml, xmlwriter | |
coverage: none | |
tools: none | |
- name: Update dependencies with composer | |
run: ./tools/composer update --no-interaction --no-ansi --no-progress | |
- name: Run vimeo/psalm | |
run: ./tools/psalm --config=.psalm/config.xml --no-progress --shepherd --show-info=false --stats | |
tests: | |
name: Tests | |
runs-on: ${{ matrix.os }} | |
env: | |
PHP_EXTENSIONS: none, ctype, curl, dom, json, libxml, mbstring, openssl, phar, soap, tokenizer, xml, xmlwriter | |
PHP_INI_VALUES: memory_limit=-1, assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
php-version: | |
- 8.1 | |
- 8.2 | |
- 8.3 | |
- 8.4 | |
- 8.5 | |
coverage-driver: | |
- pcov | |
- xdebug3 | |
steps: | |
- name: Configure Git to avoid issues with line endings | |
if: matrix.os == 'windows-latest' | |
run: git config --global core.autocrlf false | |
- name: Checkout | |
uses: actions/checkout@v5 | |
with: | |
fetch-depth: 1 | |
ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
- name: Use local branch | |
shell: bash | |
run: | | |
BRANCH=$([ "${{ github.event_name }}" == "pull_request" ] && echo "${{ github.head_ref }}" || echo "${{ github.ref_name }}") | |
git branch -D $BRANCH 2>/dev/null || true | |
git branch $BRANCH HEAD | |
git checkout $BRANCH | |
- name: Install PHP with extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: ${{ matrix.coverage-driver }} | |
extensions: ${{ env.PHP_EXTENSIONS }} | |
ini-values: ${{ env.PHP_INI_VALUES }} | |
tools: none | |
- name: Install dependencies with Composer | |
run: php ./tools/composer update --no-ansi --no-interaction --no-progress | |
- name: Run tests with PHPUnit | |
run: vendor/bin/phpunit --coverage-clover=coverage.xml | |
- name: Send code coverage report to Codecov.io | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |