PHP Classes

File: .github/workflows/test.yml

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Simple PHP Podcast Generator   .github/workflows/test.yml   Download  
File: .github/workflows/test.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Podcast Generator
Generate podcast RSS from audio and video files
Author: By
Last change:
Date: 1 year ago
Size: 1,463 bytes
 

Contents

Class file image Download
name: Tests on: [ push, pull_request ] jobs: run: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest ] php-versions: [ '8.0', '8.1' ] phpunit-version: [ '9.5' ] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} extensions: mbstring coverage: none tools: phpunit:${{ matrix.phpunit-version }}, composer:v2 - name: Check PHP Version run: php -v - name: Check PHP Extensions run: php -m - name: Check Composer Version run: composer -V - name: Get Composer Cache Directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache Composer dependencies uses: actions/cache@v2 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} restore-keys: ${{ runner.os }}-composer- - name: Validate composer.json & composer.lock run: composer validate --strict - name: Install Composer dependencies run: composer install --no-interaction --no-progress --no-suggest - name: Run Tests run: composer test