File tree Expand file tree Collapse file tree 4 files changed +0
-163
lines changed
Expand file tree Collapse file tree 4 files changed +0
-163
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3535 - " 8.1"
3636 - " 8.2"
3737 - " 8.3"
38- code-quality :
39- name : " Code quality checks"
40- runs-on : ubuntu-22.04
41- steps :
42- - name : " Checkout"
43- uses : actions/checkout@v4
44- - name : " Install PHP"
45- uses : shivammathur/setup-php@v2
46- env :
47- COMPOSER_TOKEN : ${{ secrets.GITHUB_TOKEN }}
48- with :
49- php-version : " ${{ matrix.php-version }}"
50- tools : composer:v2
51- extensions : zip
52- coverage : none
53- - name : " Show Composer version"
54- run : composer --version
55- - name : " Show the Composer configuration"
56- run : composer config --global --list
57- - name : " Cache dependencies installed with composer"
58- uses : actions/cache@v3
59- with :
60- key : " php${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.json') }}"
61- path : ~/.cache/composer
62- restore-keys : " php${{ matrix.php-version }}-composer-\n "
63- - name : " Install Composer dependencies"
64- run : " composer install --no-progress"
65- - name : " Run command"
66- run : " composer ci:${{ matrix.command }}"
67- strategy :
68- fail-fast : false
69- matrix :
70- command :
71- - " composer:normalize"
72- - " php:cs-fixer"
73- - " php:sniff"
74- - " php:stan"
75- php-version :
76- - " 8.3"
7738 unit-tests :
7839 name : " Unit tests"
7940 runs-on : ubuntu-22.04
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments