This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
54 lines (44 loc) · 1.5 KB
/
ci.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
name: Continuous integration
on:
pull_request:
push:
jobs:
check:
name: PHP ${{ matrix.php-version }}
strategy:
fail-fast: false
matrix:
include:
- php-version: '5.6'
- php-version: '7.0'
- php-version: '7.1'
- php-version: '7.2'
- php-version: '7.3'
- php-version: '7.4'
- php-version: '8.0'
- php-version: '8.1'
- php-version: '8.2'
- php-version: '8.3'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: none, curl, dom, json, mbstring, simplexml, tokenizer, xml, xmlwriter
coverage: none
- id: composer-cache
shell: bash
run: echo "dir=$(composer config cache-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
- run: composer update --no-progress --classmap-authoritative
- run: ./vendor/bin/parallel-lint . --exclude vendor
- if: ${{ matrix.php-version >= 7.1 }}
run: |
mkdir .tmp
composer require --dev --working-dir=.tmp friendsofphp/php-cs-fixer
PHP_CS_FIXER_IGNORE_ENV=1 ./.tmp/vendor/bin/php-cs-fixer fix -vvv --allow-risky=yes --rules=void_return ./tests
- run: ./vendor/bin/phpunit