-
Notifications
You must be signed in to change notification settings - Fork 2
52 lines (40 loc) · 1.4 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: CI
on:
push:
branches:
- 'master'
pull_request:
workflow_dispatch:
jobs:
validation:
name: Validation
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
extensions: mbstring, intl, bcmath
coverage: none
- name: Composer Install
run: composer install --prefer-dist --no-interaction --profile
- name: Run validation
run: composer validate
- name: Syntax check
run: find ./src -path src -prune -o -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )
lowest:
name: Prefer Lowest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
extensions: mbstring, intl, bcmath
coverage: none
- name: Composer Install
run: composer install --prefer-dist --no-interaction --profile
- name: Composer Update
run: composer update --prefer-lowest --prefer-dist --no-interaction --profile -vvv