-
Notifications
You must be signed in to change notification settings - Fork 100
36 lines (30 loc) · 889 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
- develop
pull_request:
branches:
- master
jobs:
testsuite:
name: Testes Automatizados
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
php-version: ["7.4"]
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@v4
- name: Composer Install
run: |
composer install --no-progress -o --no-ansi --no-interaction
- name: Rodando PHPUnit
run: composer test