-
Notifications
You must be signed in to change notification settings - Fork 6
84 lines (65 loc) · 2.38 KB
/
main.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: "build"
on:
- pull_request
- push
env:
cache-version: "1"
composer-version: "v2"
composer-install: "composer update --no-interaction --no-progress --prefer-dist --prefer-stable"
extensions: "json"
jobs:
tests:
name: "Static analysis"
runs-on: "${{ matrix.operating-system }}"
strategy:
matrix:
php-version: ["7.2", "7.4", "8.0"]
operating-system: ["ubuntu-latest"]
fail-fast: false
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Setup PHP cache environment"
id: "extcache"
uses: "shivammathur/cache-extensions@v1"
with:
php-version: "${{ matrix.php-version }}"
extensions: "${{ env.extensions }}"
key: "${{ env.cache-version }}"
- name: "Cache PHP extensions"
uses: "actions/cache@v2"
with:
path: "${{ steps.extcache.outputs.dir }}"
key: "${{ steps.extcache.outputs.key }}"
restore-keys: "${{ steps.extcache.outputs.key }}"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
extensions: "${{ env.extensions }}"
tools: "composer:${{ env.composer-version }}"
- name: "Setup problem matchers for PHP"
run: 'echo "::add-matcher::${{ runner.tool_cache }}/php.json"'
- name: "Get Composer cache directory"
id: "composercache"
run: 'echo "::set-output name=dir::$(composer config cache-files-dir)"'
- name: "Cache PHP dependencies"
uses: "actions/cache@v2"
with:
path: "${{ steps.composercache.outputs.dir }}"
key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}"
restore-keys: "${{ runner.os }}-composer-"
- name: "Install dependencies"
run: "${{ env.composer-install }}"
- name: "PHPStan"
run: "vendor/bin/phpstan analyse --configuration phpstan.neon --level 7 src/"
- name: "Run single test"
run: "php tests/cases/TestRunTest.phpt"
- name: "Tester"
run: "vendor/bin/tester tests/cases"
- name: "Install lowest dependencies"
run: "${{ env.composer-install }} --prefer-lowest"
- name: "Run single test"
run: "php tests/cases/TestRunTest.phpt"
- name: "Tester on lowest"
run: "vendor/bin/tester tests/cases"