PHP Classes

File: .github/workflows/php.yml

Recommend this page to a friend!
  Classes of Temuri Takalandze   PHP NBG Currency   .github/workflows/php.yml   Download  
File: .github/workflows/php.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP NBG Currency
Get currency values from National Bank of Georgia
Author: By
Last change:
Date: 3 years ago
Size: 621 bytes
 

Contents

Class file image Download
name: Run PHPUnit Tests on: [push] jobs: run: runs-on: ubuntu-latest strategy: matrix: php-versions: ['7.1', '7.2', '7.3', '7.4'] name: PHP ${{ matrix.php-versions }} steps: - name: Checkout uses: actions/checkout@v2 - name: Install PHP uses: shivammathur/setup-php@2.0.2 with: php-version: ${{ matrix.php-versions }} - name: Validate composer.json and composer.lock run: composer validate - name: Install dependencies run: composer install --no-progress --no-suggest - name: Run test suite run: ./vendor/bin/phpunit