File tree Expand file tree Collapse file tree 4 files changed +33
-2
lines changed Expand file tree Collapse file tree 4 files changed +33
-2
lines changed Original file line number Diff line number Diff line change
1
+ custom : https://nubank.com.br/pagar/518o5/zVBzxd00Sb
Original file line number Diff line number Diff line change
1
+ name : " CI"
2
+
3
+ on :
4
+ pull_request :
5
+ branches : [ master, develop ]
6
+
7
+ jobs :
8
+ test :
9
+ runs-on : ubuntu-latest
10
+
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+
14
+ - name : Validate composer.json and composer.lock
15
+ run : composer validate
16
+
17
+ - name : Cache Composer packages
18
+ id : composer-cache
19
+ uses : actions/cache@v2
20
+ with :
21
+ path : vendor
22
+ key : ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
23
+ restore-keys : |
24
+ ${{ runner.os }}-php-
25
+ - name : Install dependencies
26
+ if : steps.composer-cache.outputs.cache-hit != 'true'
27
+ run : composer install --prefer-dist --no-progress --no-suggest
28
+
29
+ - name : Run Tests And Lint
30
+ run : composer test
Original file line number Diff line number Diff line change 4
4
# PHPJasper
5
5
_ A PHP Report Generator_
6
6
7
- [ ![ Build Status] ( https://travis-ci.org /PHPJasper/phpjasper.svg?branch=master )] ( https://travis-ci.org /PHPJasper/phpjasper )
7
+ [ ![ Build Status] ( https://travis-ci.com /PHPJasper/phpjasper.svg?branch=master )] ( https://travis-ci.com /PHPJasper/phpjasper )
8
8
[ ![ Coverage Status] ( https://coveralls.io/repos/github/PHPJasper/phpjasper/badge.svg?branch=master )] ( https://coveralls.io/github/PHPJasper/phpjasper?branch=master )
9
9
[ ![ Latest Stable Version] ( https://poser.pugx.org/geekcom/phpjasper/v/stable )] ( https://packagist.org/packages/geekcom/phpjasper )
10
10
[ ![ Minimum PHP Version] ( https://img.shields.io/badge/php-%3E%207.2-blue.svg?style=flat-square )] ( https://php.net/ )
Original file line number Diff line number Diff line change 4
4
5
5
_ Gerador de relatórios PHP_
6
6
7
- [ ![ Build Status] ( https://travis-ci.org /PHPJasper/phpjasper.svg?branch=master )] ( https://travis-ci.org /PHPJasper/phpjasper )
7
+ [ ![ Build Status] ( https://travis-ci.com /PHPJasper/phpjasper.svg?branch=master )] ( https://travis-ci.com /PHPJasper/phpjasper )
8
8
[ ![ Coverage Status] ( https://coveralls.io/repos/github/PHPJasper/phpjasper/badge.svg?branch=master )] ( https://coveralls.io/github/PHPJasper/phpjasper?branch=master )
9
9
[ ![ Latest Stable Version] ( https://poser.pugx.org/geekcom/phpjasper/v/stable )] ( https://packagist.org/packages/geekcom/phpjasper )
10
10
[ ![ Minimum PHP Version] ( https://img.shields.io/badge/php-%3E%207.2-blue.svg?style=flat-square )] ( https://php.net/ )
You can’t perform that action at this time.
0 commit comments