-
Notifications
You must be signed in to change notification settings - Fork 3
34 lines (32 loc) · 945 Bytes
/
latte.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
name: Latte lint (PHP)
on: [ push, pull_request ]
jobs:
test:
name: Latte with PHP ${{ matrix.php }}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
php: [ '8.1' ]
steps:
- uses: actions/checkout@v2
name: Checkout
with:
submodules: recursive
- uses: shivammathur/setup-php@v2
name: Setup PHP
with:
php-version: ${{ matrix.php }}
extensions: curl, mbstring, mysql, soap, xml
tools: composer
ini-values: session.gc_probability=0, date.timezone="Europe/Prague", display_startup_errors = Off
- name: Composer install
run: composer install --no-progress --prefer-dist
- run: composer run-script latteLint
name: Test
- if: failure()
name: Failure output
uses: actions/upload-artifact@v2
with:
name: output
path: tests/**/*.actual