File tree Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Expand file tree Collapse file tree 3 files changed +32
-2
lines changed 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 44# PHPJasper
55_ A PHP Report Generator_
66
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 )
88[ ![ Coverage Status] ( https://coveralls.io/repos/github/PHPJasper/phpjasper/badge.svg?branch=master )] ( https://coveralls.io/github/PHPJasper/phpjasper?branch=master )
99[ ![ Latest Stable Version] ( https://poser.pugx.org/geekcom/phpjasper/v/stable )] ( https://packagist.org/packages/geekcom/phpjasper )
1010[ ![ 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 44
55_ Gerador de relatórios PHP_
66
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 )
88[ ![ Coverage Status] ( https://coveralls.io/repos/github/PHPJasper/phpjasper/badge.svg?branch=master )] ( https://coveralls.io/github/PHPJasper/phpjasper?branch=master )
99[ ![ Latest Stable Version] ( https://poser.pugx.org/geekcom/phpjasper/v/stable )] ( https://packagist.org/packages/geekcom/phpjasper )
1010[ ![ 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