-
-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (33 loc) · 899 Bytes
/
main.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
name: Run CI
on: [push]
jobs:
build:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.1', '8.2']
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install dependencies
run: composer install --prefer-dist
env:
COMPOSER_ROOT_VERSION: dev-master
- name: Run Psalm
if: matrix.php-versions == '8.2'
run: composer run psalm
- name: Run Phpunit
run: composer run phpunit
- name: Run PhpCs
if: matrix.php-versions == '8.2'
run: composer run phpcs
- name: Run Infection
if: matrix.php-versions == '8.2'
run: composer run infection
- name: Check dependencies usage
if: matrix.php-versions == '8.2'
run: composer run require-checker