-
Notifications
You must be signed in to change notification settings - Fork 38
51 lines (43 loc) · 1.08 KB
/
psalm.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
name: psalm
on:
pull_request:
push:
branches:
- master
jobs:
psalm:
name: psalm
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
experimental: [ false ]
php-version:
- "7.4"
- "8.0"
- "8.1"
dependencies:
- highest
include:
- php-version: "7.1"
dependencies: lowest
experimental: true
- php-version: "8.0"
dependencies: lowest
experimental: true
steps:
- name: Checkout.
uses: actions/checkout@v3
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Validate Composer
run: composer validate
- name: Install dependencies with Composer
uses: ramsey/composer-install@v1
with:
dependency-versions: ${{ matrix.dependencies }}
- name: Static Analysis
run: |
vendor/bin/psalm --php-version=${{ matrix.php-version }}