PHP Classes

File: .github/workflows/php.yml

Recommend this page to a friend!
  Classes of Thiago Przyczynski   Here PHP Geocoder   .github/workflows/php.yml   Download  
File: .github/workflows/php.yml
Role: Auxiliary data
Content typex: text/plain
Description: Auxiliary data
Class: Here PHP Geocoder
Get the location of an address using the Here API
Author: By
Last change:
Date: 3 months ago
Size: 1,148 bytes
 

Contents

Class file image Download
name: CI on: push: branches: tags: jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: php: ['7.1','7.2', '7.3', '7.4', '8.0', '8.1','8.2'] os: ['ubuntu-latest'] name: PHP v${{ matrix.php }} steps: - uses: actions/checkout@v2 - name: "Installing php" uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: curl,mbstring,xdebug coverage: xdebug tools: composer - name: Show PHP version run: php -v && composer -V - name: Download Composer cache dependencies from cache id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache Composer dependencies uses: actions/cache@v1 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ matrix.os }}-composer-${{ hashFiles('**/composer.json') }} restore-keys: ${{ matrix.os }}-composer- - name: Install dependencies run: | composer update --prefer-dist --no-interaction - name: Run tests run: | ./vendor/bin/phpunit