-
-
Notifications
You must be signed in to change notification settings - Fork 283
58 lines (50 loc) · 2.11 KB
/
standalone.yaml
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
53
54
55
56
57
58
name: Standalone
on:
pull_request: ~
push:
branches:
- master
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
dependency-version: [prefer-lowest, prefer-stable]
composer-version: [v2]
exclude:
- dependency-version: prefer-lowest
php: '8.0'
- dependency-version: prefer-lowest
php: '8.1'
- dependency-version: prefer-lowest
php: '8.2'
- dependency-version: prefer-lowest
php: '8.3'
name: ${{ matrix.php }} - ${{ matrix.os }} - Composer ${{ matrix.composer-version }} --${{ matrix.dependency-version }}
steps:
- name: "Configure Git"
if: ${{ matrix.os == 'windows-latest' }}
run: |
git config --system core.autocrlf false
git config --system core.eol lf
- name: Checkout
uses: actions/checkout@v3
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ matrix.composer-version }}-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, mbstring, zip
coverage: none
tools: composer:${{ matrix.composer-version }}
- name: Install Composer dependencies
run: composer update --${{ matrix.dependency-version }} --ansi --no-interaction --prefer-dist --no-dev
- name: Test launching phpinsights
run: php bin/phpinsights analyse --ansi -v --no-interaction --disable-security-check --flush-cache