PHP Classes

File: .github/workflows/ci.yml

Recommend this page to a friend!
  Classes of Chun-Sheng, Li   PHP Web Monetization   .github/workflows/ci.yml   Download  
File: .github/workflows/ci.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Web Monetization
Add a simple payment URL to monetize site pages
Author: By
Last change:
Date: 1 year ago
Size: 733 bytes
 

Contents

Class file image Download
name: "CI-Build" on: [push, pull_request] jobs: build: runs-on: ${{ matrix.operating-system }} strategy: max-parallel: 3 matrix: operating-system: [ubuntu-latest] php-versions: ['7.2', '7.3', '7.4'] steps: - uses: actions/checkout@master - name: Install PHP uses: shivammathur/setup-php@master with: php-version: ${{ matrix.php-versions }} extensions: xdebug - name: Validate composer.json and composer.lock run: composer validate - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest - name: Execute unit tests, coding style check and static code analysis run: composer check-all