PHP Classes

File: .github/workflows/test_master.yml

Recommend this page to a friend!
  Classes of Smoren Freelight   Nested PHP Accessor   .github/workflows/test_master.yml   Download  
File: .github/workflows/test_master.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nested PHP Accessor
Get and set values of nested arrays or objects
Author: By
Last change:
Date: 1 year ago
Size: 1,807 bytes
 

Contents

Class file image Download
name: Tests and static analysis (Master) on: push: branches: - master pull_request: branches: - master jobs: test: name: Test runs-on: ubuntu-latest strategy: matrix: php: ['7.4', '8.0', '8.1', '8.2'] steps: - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: xdebug tools: composer:v2 - name: Checkout code uses: actions/checkout@v3 with: fetch-depth: 0 - name: PHP Version Check run: php -v - name: Validate Composer JSON run: composer validate - name: Run Composer run: composer install --no-interaction - name: Unit tests run: | composer test-init composer test - name: PHP Code Sniffer run: composer codesniffer - name: PHPStan analysis run: composer stan code-coverage: name: Code coverage runs-on: ubuntu-latest strategy: matrix: php: ['7.4'] steps: - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: xdebug tools: composer:v2 - name: Checkout code uses: actions/checkout@v3 with: fetch-depth: 0 - name: Run Composer run: composer install --no-interaction - name: Unit tests run: | composer test-init composer test-coverage-xml mkdir -p ./build/logs cp ./tests/_output/coverage.xml ./build/logs/clover.xml - name: Code Coverage (Coveralls) env: COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: php vendor/bin/php-coveralls -v