build #1383
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
name: build | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
paths: | |
- '**.php' | |
- .github/workflows/build.yml | |
- composer.json | |
- phpstan.neon.dist | |
- phpunit.xml.dist | |
pull_request: | |
paths: | |
- '**.php' | |
- .github/workflows/build.yml | |
- composer.json | |
- phpstan.neon.dist | |
- phpunit.xml.dist | |
jobs: | |
main: | |
name: Build [PHP ${{ matrix.php-version }}] | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
tools: composer | |
extensions: intl, xdebug | |
coverage: xdebug | |
- name: Validate composer.json | |
run: composer validate --strict | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.COMPOSER_CACHE_DIR }} | |
key: composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }} | |
restore-keys: | | |
composer-${{ matrix.php-version }} | |
composer- | |
- name: Install dependencies | |
run: | | |
composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }} | |
composer update --ansi | |
- name: Run PHP-CS-Fixer | |
run: vendor/bin/php-cs-fixer check --ansi --verbose --diff | |
- name: Run PHPStan Static Analysis Check | |
run: vendor/bin/phpstan analyse --ansi --verbose | |
env: | |
XDEBUG_MODE: 'off' | |
- name: Run Nexus CS Config TestSuite | |
run: vendor/bin/phpunit --colors=always | |
env: | |
TACHYCARDIA_MONITOR_GA: enabled | |
- name: Run Coveralls | |
run: | | |
composer global require --ansi php-coveralls/php-coveralls | |
php-coveralls --verbose --coverage_clover=build/phpunit/logs/clover.xml --json_path=build/phpunit/logs/coverage.json --exclude-no-stmt --ansi | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_PARALLEL: true | |
COVERALLS_FLAG_NAME: PHP ${{ matrix.php-version }} | |
coveralls-finish: | |
name: Coveralls Finished | |
needs: [main] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload to Coveralls API | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |