Skip to content

Commit 26a6308

Browse files
Code styling (#22)
* merge workflows * Set Dockerfile indent (#23) * fix indentation * tweak editor config * add spacing * tweak json Co-authored-by: Viktor Szépe <[email protected]>
1 parent bdc6187 commit 26a6308

File tree

6 files changed

+38
-31
lines changed

6 files changed

+38
-31
lines changed

.editorconfig

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,11 @@ block_comment_end = */
1414
[*.md]
1515
trim_trailing_whitespace = false
1616

17-
[*.{yml,yaml,neon}]
17+
[*.{xml,yml,yaml,neon,json}]
18+
indent_size = 2
19+
20+
[*.{xml,yml,yaml,neon,json}.dist]
21+
indent_size = 2
22+
23+
[*.Dockerfile]
1824
indent_size = 2

.github/workflows/cs.yml

-16
This file was deleted.

.github/workflows/analyse.yml .github/workflows/style.yml

+19-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
name: Analyse code
1+
name: Code style
22

3-
on: push
3+
on: [push, pull_request]
44

55
jobs:
66

7-
analyse:
7+
phpstan:
88

9-
name: Analyse
9+
name: PHPStan
1010
runs-on: ubuntu-latest
1111
timeout-minutes: 5
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616

1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@v2
@@ -27,4 +27,17 @@ jobs:
2727
run: wget https://cachewerk.s3.amazonaws.com/relay/dev/relay.stub.php
2828

2929
- name: Run PHPStan
30-
run: composer run analyse
30+
run: composer run stan
31+
32+
editorconfig:
33+
34+
name: EditorConfig
35+
runs-on: ubuntu-latest
36+
timeout-minutes: 5
37+
38+
steps:
39+
- name: Checkout code
40+
uses: actions/checkout@v3
41+
42+
- name: Check EditorConfig
43+
uses: greut/eclint-action@v0

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"type": "library",
55
"license": "MIT",
66
"scripts": {
7-
"analyse": "phpstan analyse",
87
"bench": "phpbench run --report=redis",
9-
"bench:verbose": "phpbench run --report=redis --progress=blinken"
8+
"bench:verbose": "phpbench run --report=redis --progress=blinken",
9+
"stan": "phpstan analyse"
1010
},
1111
"require": {
1212
"php": "^7.4|^8.0",

docker/amzn2.Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ RUN yum remove php*
1010
RUN amazon-linux-extras enable php8.0
1111

1212
RUN yum install -y \
13-
php-cli \
14-
php-fpm \
15-
php-pear \
16-
php-devel \
17-
openssl11 \
18-
libzstd-devel
13+
php-cli \
14+
php-fpm \
15+
php-pear \
16+
php-devel \
17+
openssl11 \
18+
libzstd-devel
1919

2020
RUN pecl config-set php_ini /etc/php.ini
2121

phpstan.neon.dist

+4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
parameters:
2+
23
level: max
4+
35
scanFiles:
46
- relay.stub.php
7+
58
paths:
69
- benchmarks/
710
- resources/
811
- src/
12+
913
ignoreErrors:
1014
- '#Parameter .+? expects Redis, Relay\\Relay given#'
1115
- '#Return type \(Relay\\Relay\) of method .+? should be compatible with return type \(Redis\) of method#'

0 commit comments

Comments
 (0)