Skip to content

[WIP] Add v3 rest client #35

[WIP] Add v3 rest client

[WIP] Add v3 rest client #35

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ develop, master ]
pull_request:
branches: [ develop, master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4', '8.0']
steps:
- uses: actions/checkout@v2
- name: Setup PHP ${{ matrix.php-versions }} with tools
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: phan, phpunit
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
#
# - name: Run linter
# run: composer lint
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md
- name: Run test suite
run: composer test