Skip to content

Bump padraic/humbug_get_contents from 1.0.4 to 1.1.2 #80

Bump padraic/humbug_get_contents from 1.0.4 to 1.1.2

Bump padraic/humbug_get_contents from 1.0.4 to 1.1.2 #80

Workflow file for this run

name: Kloud Run Tests
on: [push]
jobs:
phpspec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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 PHPSpec test suite
run: composer run-script phpspec
phpunit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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 PHPUnit test suite
run: composer run-script phpunit
env:
COMPOSER_PROCESS_TIMEOUT: 1800