forked from PrestaShop/PrestaShop
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 850 Bytes
/
php-skip.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
# For UI tests as job is required
name: PHP
on:
push:
pull_request:
# Run when only tests are updated
paths:
- 'tests/UI/**'
concurrency:
group: ${{ github.event_name }}-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
php-cs-fixer:
name: PHP CS Fixer
runs-on: ubuntu-latest
steps:
- run: 'echo "No tests required"'
phpstan:
name: PHP Static Analysis
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ]
fail-fast: false
steps:
- run: 'echo "No tests required"'
phpunit:
name: PHPUnit
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ]
fail-fast: false
steps:
- run: 'echo "No tests required"'