Fixed composer install co-exits issue #52
This file contains 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
# GitHub Actions Documentation: https://docs.github.com/en/actions | |
name: build | |
on: | |
pull_request: ~ | |
push: { branches: [master], tags: ['*'] } | |
jobs: | |
static-analysis: | |
name: Static Analysis Tests | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest, windows-latest, macos-latest] | |
php-versions: ['8.0', '8.1', '8.2'] | |
runs-on: ${{ matrix.operating-system }} | |
steps: | |
- name: Set git to use LF on Windows | |
if: matrix.operating-system == 'windows-latest' | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, xml, pcre, json, iconv, curl, fileinfo | |
ini-values: memory_limit=1G | |
coverage: none | |
env: | |
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get composer cache directory | |
id: composer-cache | |
shell: bash | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer install --no-progress --optimize-autoloader ${{ 8.2 == matrix.php-versions && '--ignore-platform-reqs' || '' }} | |
- name: Check coding standards (PHP_CodeSniffer) | |
run: vendor/bin/phpcs | |
# - name: Statically analyze code (Phpstan) | |
# run: vendor/bin/phpstan analyse | |
# - name: Statically analyze code (Psalm) | |
# run: vendor/bin/psalm --output-format=github --taint-analysis --shepherd --report=build/logs/psalm.sarif | |
# - name: "Upload security analysis results to GitHub" | |
# uses: "github/codeql-action/upload-sarif@v2" | |
# with: | |
# sarif_file: "build/logs/psalm.sarif" | |
unit-tests: | |
name: Pest (PHPUnit) Unit Tests | |
needs: static-analysis | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest, macos-latest] | |
php-versions: ['8.0', '8.1', '8.2'] | |
runs-on: ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, xml, pcre, json, iconv, curl, fileinfo | |
ini-values: memory_limit=1G | |
coverage: pcov | |
env: | |
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer install --no-progress --optimize-autoloader ${{ 8.2 == matrix.php-versions && '--ignore-platform-reqs' || '' }} | |
- name: Run unit tests (Pest) | |
run: php -d "pcov.enabled=1" vendor/bin/pest --coverage --coverage-clover=coverage.clover | |
- name: "Upload coverage report to Codecov" | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.clover | |
benchmark: | |
name: Performance Benchmark | |
needs: unit-tests | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest, windows-latest, macos-latest] | |
php-versions: ['8.0', '8.1', '8.2'] | |
runs-on: ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, xml, pcre, json, iconv, curl, fileinfo | |
ini-values: memory_limit=1G | |
coverage: none | |
env: | |
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get composer cache directory | |
id: composer-cache | |
shell: bash | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer install --no-progress --optimize-autoloader ${{ 8.2 == matrix.php-versions && '--ignore-platform-reqs' || '' }} | |
- name: Run benchmark tests | |
run: vendor/bin/phpbench run --report=default -l none | |
publish: | |
name: Publishing Commits | |
needs: unit-tests | |
if: github.event_name != 'pull_request' | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup GO | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.17' | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
extensions: pcre, json, fileinfo | |
coverage: none | |
- name: Install dependencies | |
run: cd tools/monorepo && composer install --no-progress && cd ../../ | |
- name: Split Commits | |
run: php tools/monorepo/bin/monorepo -v |