We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e5f8f5 commit d73bba4Copy full SHA for d73bba4
.github/workflows/static-analysis.yml renamed to .github/workflows/coding-standards.yml
@@ -22,7 +22,3 @@ jobs:
22
REQUIRE_DEV: true
23
with:
24
args: analyze --no-progress
25
- - name: "PHP-CS-Fixer"
26
- uses: "docker://oskarstark/php-cs-fixer-ga:2.19.0"
27
- with:
28
- args: --diff --dry-run
.github/workflows/php-cs-fixer.yml
@@ -0,0 +1,22 @@
1
+name: "Static analysis"
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - '[0-9]+.x'
7
+ - '[0-9]+.[0-9]+'
8
+ - '[0-9]+.[0-9]+.x'
9
+ pull_request:
10
11
+jobs:
12
+ php-cs-fixer:
13
+ name: "PHP-CS-Fixer"
14
+ runs-on: "ubuntu-latest"
15
16
+ steps:
17
+ - name: "Checkout"
18
+ uses: "actions/checkout@v3"
19
+ - name: "PHP-CS-Fixer"
20
+ uses: "docker://oskarstark/php-cs-fixer-ga:2.19.0"
21
+ with:
+ args: --diff --dry-run
0 commit comments