forked from nfephp-org/sped-da
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 891 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Pipeline
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
testsuite:
name: Testes Automatizados
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.0']
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, intl, mysql, zlib, dom, openssl, soap, json, simplexml, libxml
- name: checkout
uses: actions/checkout@v2
- name: Composer Install
run: |
composer install --no-progress -o --no-ansi --no-interaction
- name: Rodando PHPUnit
run: |
composer test