Skip to content

Commit

Permalink
Codestyle: improvements (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
petrparolek committed Jun 25, 2021
1 parent cb3cb01 commit 344c416
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Expand Up @@ -11,6 +11,6 @@ indent_style = tab
indent_size = tab
tab_width = 4

[{*.json,*.yaml,*.yml,*.md}]
[{*.json, *.yaml, *.yml, *.md}]
indent_style = space
indent_size = 2
18 changes: 9 additions & 9 deletions .github/workflows/main.yaml
Expand Up @@ -6,7 +6,7 @@ on:
- ".docs/**"
push:
branches:
- "master"
- "*"
schedule:
- cron: "0 8 * * 1" # At 08:00 on Monday

Expand All @@ -23,8 +23,8 @@ jobs:

strategy:
matrix:
php-version: ["7.4"]
operating-system: ["ubuntu-latest"]
php-version: [ "7.4" ]
operating-system: [ "ubuntu-latest" ]
fail-fast: false

steps:
Expand Down Expand Up @@ -82,8 +82,8 @@ jobs:

strategy:
matrix:
php-version: ["7.4"]
operating-system: ["ubuntu-latest"]
php-version: [ "7.4" ]
operating-system: [ "ubuntu-latest" ]
fail-fast: false

steps:
Expand Down Expand Up @@ -138,8 +138,8 @@ jobs:

strategy:
matrix:
php-version: ["7.2", "7.3", "7.4"]
operating-system: ["ubuntu-latest"]
php-version: [ "7.2", "7.3", "7.4" ]
operating-system: [ "ubuntu-latest" ]
composer-args: [ "" ]
include:
- php-version: "7.2"
Expand Down Expand Up @@ -207,8 +207,8 @@ jobs:

strategy:
matrix:
php-version: ["7.4"]
operating-system: ["ubuntu-latest"]
php-version: [ "7.4" ]
operating-system: [ "ubuntu-latest" ]
fail-fast: false

if: "github.event_name == 'push'"
Expand Down
14 changes: 7 additions & 7 deletions tests/fixtures/files/interactive.json
@@ -1,8 +1,8 @@
{
"mode": "bar",
"database": {
"user": "bar",
"pass": "bar",
"dbname": "bar"
}
}
"mode": "bar",
"database": {
"user": "bar",
"pass": "bar",
"dbname": "bar"
}
}

0 comments on commit 344c416

Please sign in to comment.