PHP Classes

File: .github/workflows/main.yml

Recommend this page to a friend!
  Classes of Mohamed Elbahja   PHP SEO Tools   .github/workflows/main.yml   Download  
File: .github/workflows/main.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP SEO Tools
Perform tasks for on page search optimizations
Author: By
Last change:
Date: 4 days ago
Size: 1,348 bytes
 

Contents

Class file image Download
name: Test on: push: branches: - master pull_request: branches: - master jobs: run: runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.experimental }} strategy: max-parallel: 2 matrix: os: [ubuntu-latest] php: [7.2, 7.4, 8.0, 8.1, 8.2, 8.3] experimental: [false] name: PHP ${{ matrix.php }} test on ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: xdebug - 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.json') }} restore-keys: ${{ runner.os }}-composer - name: Install Composer dependencies run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader continue-on-error: ${{ matrix.experimental }} - name: Run PHPUnit tests run: vendor/bin/phpunit continue-on-error: ${{ matrix.experimental }}