Skip to content

Commit 6e80ce7

Browse files
authored
Codestyle: improvements (#31)
1 parent f2909d7 commit 6e80ce7

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ indent_style = tab
1111
indent_size = tab
1212
tab_width = 4
1313

14-
[{*.json,*.yaml,*.yml,*.md}]
14+
[{*.json, *.yaml, *.yml, *.md}]
1515
indent_style = space
1616
indent_size = 2

.github/workflows/main.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- ".docs/**"
77
push:
88
branches:
9-
- "master"
9+
- "*"
1010
schedule:
1111
- cron: "0 8 * * 1" # At 08:00 on Monday
1212

@@ -24,8 +24,8 @@ jobs:
2424

2525
strategy:
2626
matrix:
27-
php-version: ["7.4"]
28-
operating-system: ["ubuntu-latest"]
27+
php-version: [ "7.4" ]
28+
operating-system: [ "ubuntu-latest" ]
2929
fail-fast: false
3030

3131
steps:
@@ -86,8 +86,8 @@ jobs:
8686

8787
strategy:
8888
matrix:
89-
php-version: ["7.4"]
90-
operating-system: ["ubuntu-latest"]
89+
php-version: [ "7.4" ]
90+
operating-system: [ "ubuntu-latest" ]
9191
fail-fast: false
9292

9393
steps:
@@ -145,8 +145,8 @@ jobs:
145145

146146
strategy:
147147
matrix:
148-
php-version: ["7.2", "7.3", "7.4"]
149-
operating-system: ["ubuntu-latest"]
148+
php-version: [ "7.2", "7.3", "7.4" ]
149+
operating-system: [ "ubuntu-latest" ]
150150
composer-args: [ "" ]
151151
include:
152152
- php-version: "7.2"
@@ -219,8 +219,8 @@ jobs:
219219

220220
strategy:
221221
matrix:
222-
php-version: ["7.4"]
223-
operating-system: ["ubuntu-latest"]
222+
php-version: [ "7.4" ]
223+
operating-system: [ "ubuntu-latest" ]
224224
fail-fast: false
225225

226226
if: "github.event_name == 'push'"

codeception.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
actor: Tester
22

33
paths:
4-
# where the tests stored
5-
tests: tests
4+
# where the tests stored
5+
tests: tests
66

7-
# directory for fixture data
8-
data: tests/_data
7+
# directory for fixture data
8+
data: tests/_data
99

10-
# directory for support code
11-
support: tests/_support
10+
# directory for support code
11+
support: tests/_support
1212

13-
# directory for output
14-
output: tests/_output
13+
# directory for output
14+
output: tests/_output
1515

1616
bootstrap: _bootstrap.php
1717

1818
settings:
19-
log: true
19+
log: true
2020

2121
coverage:
22-
enabled: true
23-
include:
24-
- src/**
22+
enabled: true
23+
include:
24+
- src/**

tests/functional.suite.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ error_level: "E_ALL"
33
class_name: FunctionalSuiteTester
44

55
modules:
6-
enabled:
7-
- Contributte\Codeception\Module\NetteApplicationModule:
8-
followRedirects: false
9-
- Contributte\Codeception\Module\NetteDIModule:
10-
tempDir: ./../_temp/functional
11-
removeDefaultExtensions: true
12-
configFiles:
13-
- config/config.neon
6+
enabled:
7+
- Contributte\Codeception\Module\NetteApplicationModule:
8+
followRedirects: false
9+
- Contributte\Codeception\Module\NetteDIModule:
10+
tempDir: ./../_temp/functional
11+
removeDefaultExtensions: true
12+
configFiles:
13+
- config/config.neon

0 commit comments

Comments
 (0)