-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (38 loc) · 1.32 KB
/
build.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
name: Build
on: push
jobs:
run:
runs-on: 'ubuntu-22.04'
strategy:
matrix:
php-versions: [ '8.1', '8.2' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
tools: cs2pr
- name: Declare variables
id: vars
run: echo "composer_cache_dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache composer
uses: actions/cache@v3
with:
path: ${{ steps.vars.outputs.composer_cache_dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Lint PHP
run: find -L src -type f -name '*.php' -print0 | xargs -0 -n 1 -P $(nproc) php -l
- name: Install dependencies
run: composer install --prefer-dist --no-interaction --no-ansi
- name: PHP-CS-Fixer
run: php vendor/bin/php-cs-fixer fix -vvv --dry-run --using-cache=no --format=checkstyle | cs2pr
if: matrix.php-versions == 8.2
- name: Static Analysis
run: php vendor/bin/phpstan analyse
- name: Tests
run: php vendor/bin/phpunit -v --do-not-cache-result