File tree Expand file tree Collapse file tree 3 files changed +29
-24
lines changed Expand file tree Collapse file tree 3 files changed +29
-24
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ run :
7
+ runs-on : ${{ matrix.operating-system }}
8
+ strategy :
9
+ matrix :
10
+ operating-system : [ubuntu-latest]
11
+ php-versions : ['7.2', '7.3', '7.4']
12
+ name : PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
13
+ steps :
14
+ - name : Checkout
15
+ uses : actions/checkout@v2
16
+
17
+ - name : Setup PHP
18
+ uses : shivammathur/setup-php@v2
19
+ with :
20
+ php-version : ${{ matrix.php-versions }}
21
+ - name : Install Dependencies
22
+ uses : nick-invision/retry@v1
23
+ with :
24
+ timeout_minutes : 10
25
+ max_attempts : 3
26
+ command : composer install
27
+ - name : Run Script
28
+ run : vendor/bin/phpunit
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
** DISCLAIMER: This repository is in development and not meant for production use**
2
2
3
- # Functions Framework for PHP [ ![ Build Status] ( https://travis-ci.com/GoogleCloudPlatform/functions- framework-php.svg?branch=master )] ( https://travis-ci.com /GoogleCloudPlatform/functions-framework-php ) [ ![ Packagist] ( https://poser.pugx.org/google/cloud-functions-framework/v/stable )] ( https://packagist.org/packages/google/cloud-functions-framework )
3
+ # Functions Framework for PHP [ ![ Build Status] ( https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2FGoogleCloudPlatform%2Ffunctions- framework-php%2Fbadge&style=flat )] ( https://actions-badge.atrox.dev /GoogleCloudPlatform/functions-framework-php/goto ) [ ![ Packagist] ( https://poser.pugx.org/google/cloud-functions-framework/v/stable )] ( https://packagist.org/packages/google/cloud-functions-framework )
4
4
5
5
An open source FaaS (Function as a service) framework for writing portable
6
6
PHP functions.
You can’t perform that action at this time.
0 commit comments